[CI] Remove --detectOpenHandles to parallelize Jest tests again (#67413) (#67515)

This commit is contained in:
Brian Seeders 2020-05-27 14:42:13 -04:00 committed by GitHub
parent deab3ca318
commit 64b135594b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View file

@ -33,7 +33,7 @@ module.exports = function (grunt) {
function runJest(jestScript) {
const serverCmd = {
cmd: 'node',
args: [jestScript, '--ci', '--detectOpenHandles'],
args: [jestScript, '--ci'],
opts: { stdio: 'inherit' },
};

View file

@ -10,7 +10,7 @@ echo ""
echo " -> Running jest tests"
cd "$XPACK_DIR"
checks-reporter-with-killswitch "X-Pack Jest" node --max-old-space-size=6144 scripts/jest --ci --verbose --detectOpenHandles
checks-reporter-with-killswitch "X-Pack Jest" node --max-old-space-size=6144 scripts/jest --ci --verbose
echo ""
echo ""