diff --git a/e2e/workflowui-tests.spec.ts b/e2e/workflowui-tests.spec.ts index 1b43814b1..22ae8804e 100644 --- a/e2e/workflowui-tests.spec.ts +++ b/e2e/workflowui-tests.spec.ts @@ -294,7 +294,7 @@ class PlaywrightTestInterpreter { // Discover and register tests from workflowui/playwright directory function discoverAndRegisterWorkflowUITests(): void { - const workflowuiDir = resolve(__dirname, '../workflowui/playwright') + const workflowuiDir = resolve(__dirname, '../frontends/workflowui/playwright') if (!existsSync(workflowuiDir)) { console.warn('workflowui/playwright directory not found') diff --git a/frontends/workflowui/playwright.config.ts b/frontends/workflowui/playwright.config.ts index 87c8e98f5..5ac3f9990 100644 --- a/frontends/workflowui/playwright.config.ts +++ b/frontends/workflowui/playwright.config.ts @@ -4,7 +4,7 @@ import { join, resolve } from 'path'; /** * Playwright E2E configuration for workflowui - * Tests are defined in JSON format in /workflowui/playwright/*.json + * Tests are defined in JSON format in /frontends/workflowui/playwright/*.json */ export default defineConfig({ testDir: '../e2e',