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