From 4ccc2686c04ebff65b066e0c8597d0bcc1338518 Mon Sep 17 00:00:00 2001 From: Raju Udava <86527202+dstala@users.noreply.github.com> Date: Tue, 21 May 2024 21:48:16 +0530 Subject: [PATCH] test: enable fullyParallel mode 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 cd797c4b5f..c7acdceb90 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: false, + fullyParallel: true, /* Fail the build on CI if you accidentally left test.only in the source code. */ forbidOnly: !!process.env.CI,