From ab2ee32ae8f895b78ccf6f3228f3ff65e51e5cd0 Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Tue, 21 May 2024 16:39:01 +0530 Subject: [PATCH] test: disable fully parallel Signed-off-by: Raju Udava <86527202+dstala@users.noreply.github.com> --- tests/playwright/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright/playwright.config.ts b/tests/playwright/playwright.config.ts index c7acdceb90..cd797c4b5f 100644 --- a/tests/playwright/playwright.config.ts +++ b/tests/playwright/playwright.config.ts @@ -30,7 +30,7 @@ export default defineConfig({ timeout: 14000, }, /* Run tests in files in parallel */ - fullyParallel: true, + fullyParallel: false, /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: !!process.env.CI,