Skip to content

Commit

Permalink
Merge pull request #414 from KaiVolland/geostyler-style-5
Browse files Browse the repository at this point in the history
Adaptions to work with modified geostyler-style parser output
  • Loading branch information
KaiVolland authored Oct 4, 2021
2 parents 6df332e + da509ad commit 229f9c6
Show file tree
Hide file tree
Showing 6 changed files with 891 additions and 18,415 deletions.
14 changes: 9 additions & 5 deletions jest.config.js
Original file line number Diff line number Diff line change
@@ -1,16 +1,20 @@
const testRegex = 'src/.*\\.spec.ts$';

module.exports = {
'moduleFileExtensions': [
moduleFileExtensions: [
'ts',
'js'
],
'transformIgnorePatterns': [
transformIgnorePatterns: [
'node_modules/(?!(geostyler-style)/)'
],
'testRegex': testRegex,
'collectCoverageFrom': [
testRegex: testRegex,
collectCoverageFrom: [
'src/*.ts',
'!' + testRegex
]
],
moduleNameMapper: {
// to work with npm link on geostyler-style
'core-js': '<rootDir>/node_modules/core-js'
}
};
Loading

0 comments on commit 229f9c6

Please sign in to comment.