Skip to content
Snippets Groups Projects
Commit c7727374 authored by Tom French's avatar Tom French
Browse files

fix: stop trying to transform node_modules

parent 0e0b46ed
No related branches found
No related tags found
No related merge requests found
...@@ -8,7 +8,7 @@ module.exports = { ...@@ -8,7 +8,7 @@ module.exports = {
setupFilesAfterEnv: ['<rootDir>/src/mocks/setup.js'], setupFilesAfterEnv: ['<rootDir>/src/mocks/setup.js'],
testEnvironment: 'node', testEnvironment: 'node',
testPathIgnorePatterns: ['/node_modules/', '/lib/', '.+/index.web.test.js'], testPathIgnorePatterns: ['/node_modules/', '/lib/', '.+/index.web.test.js'],
transformIgnorePatterns: ['__mocks__'], transformIgnorePatterns: ['/node_modules/', '__mocks__'],
globals: { globals: {
__TESTING__: true __TESTING__: true
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment