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 <noreply@anthropic.com>
This commit is contained in:
Thomas Hallock
2026-01-24 05:44:13 -06:00
parent affad2f4a6
commit dbc45b97b0

View File

@@ -109,12 +109,13 @@ async function runTests(): Promise<void> {
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}`,
],