From 04786ce65a0b704665fcd4635d4435c982340499 Mon Sep 17 00:00:00 2001 From: Rob Spectre Date: Tue, 26 Sep 2023 15:20:49 -0400 Subject: [PATCH] 1) Added `--maxWorkers=2` to `jest` invocation to keep tests from timing out on CircleCI. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 76861aa..589f875 100644 --- a/package.json +++ b/package.json @@ -8,7 +8,7 @@ "preview": "vite preview", "lint": "eslint --ext .js,.vue --ignore-path .gitignore ./", "lint:fix": "eslint --ext .js,.vue --ignore-path .gitignore --fix ./", - "test": "jest", + "test": "jest --maxWorkers=2", "test:inspect": "node --inspect-brk node_modules/.bin/jest --runInBand" }, "engines": {