From 0472e714e6b8eea3f562a4b6de6a5e22a8af5f2d Mon Sep 17 00:00:00 2001 From: taroj1205 Date: Fri, 16 May 2025 11:42:43 +1200 Subject: [PATCH] fix(playwright.config): simplify web server command by removing CI condition --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 5d12065..c0fb088 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -65,7 +65,7 @@ export default defineConfig({ /* Run your local dev server before starting the tests */ webServer: { - command: process.env.CI ? 'npm run start' : 'npm run dev', + command: 'npm run dev', url: 'http://127.0.0.1:3000', reuseExistingServer: !process.env.CI, },