From d374f2c95d096b9f6d83cb2a0896f1fa6b36f5d5 Mon Sep 17 00:00:00 2001 From: dakkar Date: Tue, 10 Jun 2025 17:09:24 +0100 Subject: [PATCH] tweak jest e2e config `maxConcurrency` is how many `test.concurrent` to run at once, nothing to do with how many test *files* to run (that's probably `maxWorkers` which is already 1) --- packages/backend/jest.config.e2e.cjs | 1 - 1 file changed, 1 deletion(-) diff --git a/packages/backend/jest.config.e2e.cjs b/packages/backend/jest.config.e2e.cjs index 6927185134..4502da47df 100644 --- a/packages/backend/jest.config.e2e.cjs +++ b/packages/backend/jest.config.e2e.cjs @@ -12,5 +12,4 @@ module.exports = { testMatch: [ "/test/e2e/**/*.ts", ], - maxConcurrency: 1, // these tests share a database, running more than one at a time is a bad idea };