From 898ee3b83d01f211a35c48599bc3d7afd8647e75 Mon Sep 17 00:00:00 2001 From: Huyen Nguyen <25715018+huyenltnguyen@users.noreply.github.com> Date: Tue, 13 Aug 2024 02:39:12 +0700 Subject: [PATCH] fix: change npm to pnpm in playwright config --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 956c1626..3f0f7f7e 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -71,7 +71,7 @@ export default defineConfig({ /* Run your local dev server before starting the tests */ webServer: { - command: "npm run start", + command: "pnpm run start", url: "http://127.0.0.1:3000", reuseExistingServer: !process.env.CI }