test: run the tests serially due to brew issue

This commit is contained in:
Amin Yahyaabadi 2021-09-16 04:29:34 -05:00
parent 841f079886
commit 1efc211023
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@
"test.format": "prettier . --check", "test.format": "prettier . --check",
"test.lint": "eslint .", "test.lint": "eslint .",
"test.tsc": "tsc --noEmit", "test.tsc": "tsc --noEmit",
"test.unit": "jest", "test.unit": "jest --runInBand",
"test": "run-p test.format test.lint test.tsc test.unit", "test": "run-p test.format test.lint test.tsc test.unit",
"pack.exe": "shx rm -rf ./dist/tsconfig.tsbuildinfo && node ./building/pack-exe.js" "pack.exe": "shx rm -rf ./dist/tsconfig.tsbuildinfo && node ./building/pack-exe.js"
}, },