From 8f460cb80d40d1a5ef2f226faa49798a40faa8c5 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Tue, 26 Apr 2022 23:05:07 +0545 Subject: [PATCH] test(config): reuse existing dev server for local playwright tests (#25194) --- core/playwright.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/playwright.config.ts b/core/playwright.config.ts index 52bae64692..341404d88b 100644 --- a/core/playwright.config.ts +++ b/core/playwright.config.ts @@ -111,7 +111,8 @@ const config: PlaywrightTestConfig = { projects: generateProjects(), webServer: { command: 'serve -p 3333', - port: 3333 + port: 3333, + reuseExistingServer: !process.env.CI } };