We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a43e974 commit 8b762daCopy full SHA for 8b762da
scripts/pre_test.js
@@ -13,10 +13,10 @@ function main() {
13
stdio: [ 'inherit', 'inherit', 'inherit' ],
14
});
15
if (process.env.CI) {
16
- // add --no-file-parallelism
+ // add --no-threads
17
const pkgFile = join(process.cwd(), 'package.json');
18
const pkg = JSON.parse(readFileSync(pkgFile, 'utf-8'));
19
- pkg.scripts.cov = `${pkg.scripts.cov} --no-file-parallelism`;
+ pkg.scripts.cov = `${pkg.scripts.cov} --no-threads`;
20
writeFileSync(pkgFile, JSON.stringify(pkg));
21
}
22
0 commit comments