From 1efc211023036e19a9e2779f00969089af2c5eba Mon Sep 17 00:00:00 2001 From: Amin Yahyaabadi Date: Thu, 16 Sep 2021 04:29:34 -0500 Subject: [PATCH] test: run the tests serially due to brew issue --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 6bed366e..44222718 100644 --- a/package.json +++ b/package.json @@ -15,7 +15,7 @@ "test.format": "prettier . --check", "test.lint": "eslint .", "test.tsc": "tsc --noEmit", - "test.unit": "jest", + "test.unit": "jest --runInBand", "test": "run-p test.format test.lint test.tsc test.unit", "pack.exe": "shx rm -rf ./dist/tsconfig.tsbuildinfo && node ./building/pack-exe.js" },