diff --git a/jest.config.e2e.js b/jest.config.e2e.js index 1786dbcf03a..aa321b98f6c 100644 --- a/jest.config.e2e.js +++ b/jest.config.e2e.js @@ -9,4 +9,5 @@ module.exports = { '/out-tsc/', '/test/', ], + transform: {}, }; diff --git a/jest.config.js b/jest.config.js index 477c9163f22..8de85dea198 100644 --- a/jest.config.js +++ b/jest.config.js @@ -2,13 +2,12 @@ module.exports = { name: 'setup', displayName: 'Setup', testMatch: ['**/test/?(*.)+(spec|test).js'], - testPathIgnorePatterns: [ - '/packages/', - ], + testPathIgnorePatterns: ['/packages/'], coveragePathIgnorePatterns: [ '/dist/', '/node_modules/', '/out-tsc/', - '/test/' - ] + '/test/', + ], + transform: {}, };