From 25ab9e4e914c3de421c4b4d4bc6922889e35e606 Mon Sep 17 00:00:00 2001
From: R Midhun Suresh <hi@midhun.dev>
Date: Fri, 26 Jul 2024 00:33:00 +0530
Subject: [PATCH] =?UTF-8?q?Revert=20"Use=20multiple=20workers=20in=20Playw?=
 =?UTF-8?q?right=20CI=20to=20make=20use=20of=20multiple=20cores=20(?=
 =?UTF-8?q?=E2=80=A6"=20(#12827)?=
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit

This reverts commit 08ee1b8d97e31c3c78bc76eb4d671819c9827e2a.
---
 playwright.config.ts | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/playwright.config.ts b/playwright.config.ts
index ba491ff82a..a9fcf2242d 100644
--- a/playwright.config.ts
+++ b/playwright.config.ts
@@ -37,7 +37,7 @@ export default defineConfig({
     },
     testDir: "playwright/e2e",
     outputDir: "playwright/test-results",
-    workers: process.env.CI ? "50%" : 1,
+    workers: 1,
     retries: process.env.CI ? 2 : 0,
     reporter: process.env.CI ? [["blob"], ["github"]] : [["html", { outputFolder: "playwright/html-report" }]],
     snapshotDir: "playwright/snapshots",
-- 
GitLab