From be8cfa57a6067504daa67baa69a5521e21d8c507 Mon Sep 17 00:00:00 2001 From: Matthew Black Date: Sun, 20 Oct 2024 11:43:20 -0400 Subject: [PATCH] test: switch to sequential to fix worker fail issue --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 8102a8e9..0fadab68 100644 --- a/package.json +++ b/package.json @@ -64,7 +64,7 @@ "lint": "turbo run lint", "lint:fix": "turbo run lint:fix", "build": "turbo run build", - "test": "yarn run test:unit && yarn run test:integration", + "test": "yarn run test:unit && yarn run test:integration:sequential", "test:unit": "turbo run test", "test:integration": "nyc --reporter=text --reporter=lcov cross-env NODE_ENV=test mocha --parallel --max-old-space-size=4096", "test:integration:sequential": "nyc --reporter=text --reporter=lcov cross-env NODE_ENV=test mocha --max-old-space-size=4096",