Merge pull request #3247 from xtx1130/test-add-forceexit

test: add forceExit argv
This commit is contained in:
Clark Du 2018-04-19 21:51:48 -05:00 committed by GitHub
commit 575eb6b5ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -58,10 +58,10 @@
"prebuild": "yarn clean",
"security": "nsp check || true",
"test": "yarn test:fixtures && yarn test:unit",
"test:fixtures": "jest --maxWorkers=4 --coverage -e test/fixtures",
"test:e2e": "jest --maxWorkers=1 test/e2e",
"test:fixtures": "jest --maxWorkers=4 --coverage -e test/fixtures --forceExit",
"test:e2e": "jest --maxWorkers=1 test/e2e --forceExit",
"test:lint": "yarn lint && yarn security",
"test:unit": "jest --maxWorkers=4 --coverage -e test/unit"
"test:unit": "jest --maxWorkers=4 --coverage -e test/unit --forceExit"
},
"engines": {
"node": ">=8.0.0",