Skip to content

Commit

Permalink
test: fix jest tests running twice
Browse files Browse the repository at this point in the history
  • Loading branch information
TarikGul committed Nov 6, 2023
1 parent 7d302d5 commit e569e35
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions jest.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ module.exports = {
testEnvironment: 'node',
maxConcurrency: 3,
maxWorkers: '50%',
testPathIgnorePatterns: ['/lib/', '/node_modules/'],
testPathIgnorePatterns: ['/lib/', '/node_modules/', '/build/'],
// The below resolves `jest-haste-map:...`
modulePathIgnorePatterns: ['/lib']
modulePathIgnorePatterns: ['/lib', '/build']
};

0 comments on commit e569e35

Please sign in to comment.