misc: move forceExit forward

This commit is contained in:
Clark Du 2018-04-20 11:46:06 +08:00
parent 39bc403994
commit a4c84eced3
No known key found for this signature in database
GPG Key ID: D0E5986AF78B86D9

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 --forceExit",
"test:e2e": "jest --maxWorkers=1 test/e2e --forceExit",
"test:fixtures": "jest --maxWorkers=4 --forceExit --coverage -e test/fixtures",
"test:e2e": "jest --maxWorkers=1 --forceExit test/e2e",
"test:lint": "yarn lint && yarn security",
"test:unit": "jest --maxWorkers=4 --coverage -e test/unit --forceExit"
"test:unit": "jest --maxWorkers=4 --forceExit --coverage -e test/unit"
},
"engines": {
"node": ">=8.0.0",