We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9919444 commit 6a0ce11Copy full SHA for 6a0ce11
jest.config.js
@@ -10,7 +10,8 @@ module.exports = {
10
testRunner: 'jest-circus/runner',
11
// ? 24h if debugging so MMS and other tools don't choke, otherwise 1m
12
testTimeout: 1000 * 60 * (process.env.VSCODE_INSPECTOR_OPTIONS ? 60 * 24 : 1),
13
- maxConcurrency: require('node:os').cpus().length - 1,
+ // ? Minimum of 10 concurrent tests executed at once; maximum of cpu cores - 1
14
+ maxConcurrency: Math.max(require('node:os').cpus().length - 1, 10),
15
verbose: false,
16
testPathIgnorePatterns: ['/node_modules/', '/dist/'],
17
setupFilesAfterEnv: ['./test/setup.ts'],
0 commit comments