Skip to content

Commit

Permalink
chore: do not run tests of e2e tests (#12667)
Browse files Browse the repository at this point in the history
  • Loading branch information
SimenB authored Apr 12, 2022
1 parent 2ce4a0a commit 7e6c458
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions jest.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ export default {
'/e2e/.*/__tests__',
'/e2e/global-setup',
'/e2e/global-teardown',
'/e2e/custom-*',
'/e2e/test-in-root',
'/e2e/run-programmatically-multiple-projects',
'\\.snap$',
'/packages/.*/build',
'/packages/.*/src/__tests__/setPrettyPrint.ts',
Expand All @@ -67,11 +70,11 @@ export default {
],
testTimeout: 70000,
transform: {
'\\.[jt]sx?$': '<rootDir>/packages/babel-jest',
'\\.[jt]sx?$': require.resolve('babel-jest'),
},
watchPathIgnorePatterns: ['coverage'],
watchPlugins: [
'jest-watch-typeahead/filename',
'jest-watch-typeahead/testname',
require.resolve('jest-watch-typeahead/filename'),
require.resolve('jest-watch-typeahead/testname'),
],
};

0 comments on commit 7e6c458

Please sign in to comment.