chore: use jest --runInBand for better CircleCI perf (#104)

This commit is contained in:
Nolan Lawson 2020-12-26 18:39:24 -08:00 committed by GitHub
parent 98b07e587c
commit 545fcb3b64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -39,9 +39,9 @@
"dev:server": "node ./test/adhoc/server.js",
"lint": "standard && stylelint '**/*.scss'",
"lint:fix": "standard --fix && stylelint --fix '**/*.scss'",
"test": "jest",
"test": "jest --runInBand",
"test:adhoc": "node ./test/adhoc/server.js",
"cover": "jest --coverage",
"cover": "jest --runInBand --coverage",
"docs": "node bin/processCustomEmoji.js",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s",
"version": "run-s changelog docs && git add CHANGELOG.md docs"