From ebbae9e64f416d11f3e4f4ea39f02f8fe3eda5f0 Mon Sep 17 00:00:00 2001 From: WilliamThorenfeldt Date: Tue, 6 Feb 2024 14:54:54 +0100 Subject: [PATCH] Removing parallell for Playwright tests --- 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