diff --git a/playwright.config.ts b/playwright.config.ts index 560fdc4cef7..6380d2c02f5 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -72,9 +72,9 @@ export default defineConfig({ ], /* Run your local dev server before starting the tests */ - // webServer: { - // command: 'npm run start', - // url: 'http://localhost:3000', - // reuseExistingServer: !process.env.CI, - // }, + webServer: { + command: "cd apps/web && npm run build:bit:watch", + url: "https://localhost:8080 ", + reuseExistingServer: true, //!process.env.CI, + }, });