From bdf5d0951e7ddec77b7974ce561b0336d35113a8 Mon Sep 17 00:00:00 2001 From: johndoe6345789 Date: Tue, 10 Mar 2026 01:08:02 +0000 Subject: [PATCH] fix: use workspace name 'workflowui' not path in playwright webServer command Co-Authored-By: Claude Sonnet 4.6 --- e2e/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/e2e/playwright.config.ts b/e2e/playwright.config.ts index 92323af08..195e02569 100644 --- a/e2e/playwright.config.ts +++ b/e2e/playwright.config.ts @@ -28,7 +28,7 @@ export default defineConfig({ /* Start workflowui dev server automatically when not running against Docker stack */ webServer: process.env.PLAYWRIGHT_BASE_URL ? undefined : { - command: 'npm run dev -w frontends/workflowui', + command: 'npm run dev -w workflowui', url: 'http://localhost:3000/workflowui/', reuseExistingServer: !process.env.CI, timeout: 120_000,