From 7b75cb79c42188a3fdc35d9ff1ed9fee50e7d08b Mon Sep 17 00:00:00 2001 From: Test Date: Mon, 9 Mar 2026 00:58:24 +0100 Subject: [PATCH] fix: add 1 retry for Playwright smoke tests to handle server startup timing Co-Authored-By: Claude Opus 4.6 --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 86b08894..19b9c4d2 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -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',