From dbc45b97b0bf0f91f082f3e4e85040c6b0bf5d44 Mon Sep 17 00:00:00 2001 From: Thomas Hallock Date: Sat, 24 Jan 2026 05:44:13 -0600 Subject: [PATCH] fix(smoke-tests): correct Playwright test path argument The testDir in playwright.config.ts is './e2e', so we should pass 'smoke' not 'e2e/smoke' to avoid looking in ./e2e/e2e/smoke. Co-Authored-By: Claude Opus 4.5 --- apps/web/scripts/smoke-test-runner.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/scripts/smoke-test-runner.ts b/apps/web/scripts/smoke-test-runner.ts index 53a564eb..a3921468 100644 --- a/apps/web/scripts/smoke-test-runner.ts +++ b/apps/web/scripts/smoke-test-runner.ts @@ -109,12 +109,13 @@ async function runTests(): Promise { try { // Run Playwright tests with JSON reporter + // Note: testDir in playwright.config.ts is './e2e', so we pass 'smoke' not 'e2e/smoke' const playwrightProcess = spawn( "npx", [ "playwright", "test", - "e2e/smoke", + "smoke", "--reporter=json", `--output=${reportDir}`, ],