From dd5579a4727dfd631276ea6d60f2f7ddafdb2826 Mon Sep 17 00:00:00 2001 From: BrickheadJohnny Date: Tue, 23 Jul 2024 11:46:10 +0200 Subject: [PATCH] fix(playwright.config): webServer config --- playwright.config.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index fbfac1b43e..a6b7672e3e 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -64,8 +64,8 @@ export default defineConfig({ ], webServer: { - command: "npm run start", + command: process.env.CI ? "" : "npm run start", url: baseURL, - reuseExistingServer: !process.env.CI, + reuseExistingServer: true, }, })