fix: add 1 retry for Playwright smoke tests to handle server startup timing

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Test
2026-03-09 00:58:24 +01:00
parent a66eedbecd
commit 7b75cb79c4

View File

@@ -3,7 +3,7 @@ import { defineConfig } from '@playwright/test'
export default defineConfig({
testDir: './tests/smoke',
timeout: 15_000,
retries: 0,
retries: 1,
workers: 1,
use: {
baseURL: process.env.BASE_URL || 'http://localhost:5201',