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:
@@ -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}`,
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user