Skip to content

Commit 8b762da

Browse files
committed
f
1 parent a43e974 commit 8b762da

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

scripts/pre_test.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,10 +13,10 @@ function main() {
1313
stdio: [ 'inherit', 'inherit', 'inherit' ],
1414
});
1515
if (process.env.CI) {
16-
// add --no-file-parallelism
16+
// add --no-threads
1717
const pkgFile = join(process.cwd(), 'package.json');
1818
const pkg = JSON.parse(readFileSync(pkgFile, 'utf-8'));
19-
pkg.scripts.cov = `${pkg.scripts.cov} --no-file-parallelism`;
19+
pkg.scripts.cov = `${pkg.scripts.cov} --no-threads`;
2020
writeFileSync(pkgFile, JSON.stringify(pkg));
2121
}
2222
}

0 commit comments

Comments
 (0)