From b5b61aec6a09bfaed4d410135bdcbc1b4a3e94ba Mon Sep 17 00:00:00 2001 From: Tilman Vatteroth Date: Thu, 7 Sep 2023 19:53:21 +0200 Subject: [PATCH] fix: limit task concurrency for tests Signed-off-by: Tilman Vatteroth --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 71dd69eb6..0dce785c9 100644 --- a/package.json +++ b/package.json @@ -19,8 +19,8 @@ "format": "dotenv -c development -- turbo run format", "start:dev": "dotenv -c development -- turbo run start:dev", "start": "dotenv -c production -- turbo run start", - "test:ci": "dotenv -c test -- turbo run test:ci", - "test": "dotenv -c test -- turbo run test", + "test:ci": "dotenv -c test -- turbo run test:ci --concurrency 1", + "test": "dotenv -c test -- turbo run test --concurrency 1", "test:e2e:ci": "dotenv -c test -- turbo run test:e2e:ci" }, "packageManager": "yarn@3.6.3",