From a3a5d278a043b957ce04f134a3658e0622dcd211 Mon Sep 17 00:00:00 2001 From: RMidhunSuresh Date: Tue, 25 Oct 2022 21:18:56 +0530 Subject: [PATCH] Limit workers to 1 for now --- playwright.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/playwright.config.ts b/playwright.config.ts index 6fbb499b..0a00a88f 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -16,5 +16,6 @@ const config: PlaywrightTestConfig = { command: "yarn start", url: `${BASE_URL}/#/login`, }, + workers: 1 }; export default config;