From 91e195de8f6957648aeebe7074c557c069474ac5 Mon Sep 17 00:00:00 2001 From: Jerome Hardaway Date: Wed, 18 Dec 2024 20:32:06 -0500 Subject: [PATCH] update web server command in Playwright config to use 'npm run dev' --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index e97636fa..87e9174f 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -62,7 +62,7 @@ export default defineConfig({ /* Run your local dev server before starting the tests */ webServer: { - command: "npm run start", + command: "npm run dev", url: "http://localhost:3000", reuseExistingServer: !process.env.CI, },