From 39277be5930fd50fb6fc29cb927a2bfda1f1c595 Mon Sep 17 00:00:00 2001 From: Matt Gibson Date: Tue, 7 Oct 2025 15:07:54 -0700 Subject: [PATCH] Add web client as server --- playwright.config.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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, + }, });