We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 929d3d4 + 312c8dd commit 17a510dCopy full SHA for 17a510d
1 file changed
scripts/test.ts
@@ -20,6 +20,8 @@ const argv = process.argv.slice(2);
20
// Watch unless on CI or in coverage mode
21
if (!process.env.CI && argv.includes('--coverage') === false) {
22
argv.push('--watch');
23
+ // Speed up watch mode tests according to https://ivantanev.com/make-jest-faster/
24
+ argv.push('--maxWorkers=25%');
25
}
26
27
jest.run(argv);
0 commit comments