From 746c341fdafdb2d2b593c0e0c3ffc8f3388e7eaa Mon Sep 17 00:00:00 2001 From: Nolan Lawson Date: Thu, 18 Mar 2021 20:50:24 -0700 Subject: [PATCH] chore: reduce test concurrency (#2006) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b8c27ff5..be8f597a 100644 --- a/package.json +++ b/package.json @@ -24,7 +24,7 @@ "test-browser": "run-p --race run-mastodon build-and-start test-mastodon", "test-mastodon": "run-s wait-for-mastodon-to-start wait-for-mastodon-data testcafe", "testcafe": "run-s testcafe-suite0 testcafe-suite1", - "testcafe-suite0": "cross-env-shell testcafe -c 4 $BROWSER tests/spec/0*", + "testcafe-suite0": "cross-env-shell testcafe -c 2 $BROWSER tests/spec/0*", "testcafe-suite1": "cross-env-shell testcafe $BROWSER tests/spec/1*", "test-unit": "NODE_ENV=test mocha -r esm -r bin/browser-shim.js tests/unit/", "test-in-ci": "cross-env BROWSER=chrome:headless run-p --race run-mastodon start test-mastodon",