From 00090907f423b7d42967b2222e830d5801153808 Mon Sep 17 00:00:00 2001 From: WilliamThorenfeldt <133344438+WilliamThorenfeldt@users.noreply.github.com> Date: Tue, 6 Feb 2024 15:48:08 +0100 Subject: [PATCH] Removing parallell for Playwright tests (#12257) --- frontend/testing/playwright/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/testing/playwright/playwright.config.ts b/frontend/testing/playwright/playwright.config.ts index a561b5ddfc2..6110c5bce62 100644 --- a/frontend/testing/playwright/playwright.config.ts +++ b/frontend/testing/playwright/playwright.config.ts @@ -13,7 +13,7 @@ export default defineConfig({ trace: 'on-first-retry', baseURL: process.env.PLAYWRIGHT_TEST_BASE_URL, }, - fullyParallel: true, + fullyParallel: false, forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: 1, // Github actions always use only 1, so we set to 1 locally as well