From 899fc71197bdf0a85d9534e46eecad98ae4e864e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Przemek=20Wi=C4=99ch?= Date: Wed, 10 Jun 2026 23:44:49 +0200 Subject: [PATCH] Don't freeze tests when they fail --- playwright.config.ts | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index ae15ac2..4157ae9 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -6,7 +6,10 @@ export default defineConfig({ forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? '100%' : undefined, - reporter: 'html', + reporter: [ + ['html', {open: 'never'}], + ['list'], + ], use: { baseURL: 'http://localhost:3000', locale: 'en-US', // Forces consistent translation keys across locales for robust placeholder selectors