From 72717f200306f03838b440d6a6703ee76ec91cf3 Mon Sep 17 00:00:00 2001 From: Jonas Date: Mon, 13 Jul 2026 10:56:48 +0200 Subject: [PATCH] chore(playwright): use `list` reporter when run locally Spawning the browser to show HTML report after failed tests turned out to be rather annoying to me. Signed-off-by: Jonas --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index c0da1cbbe36..6d510c8d68d 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -20,7 +20,7 @@ export default defineConfig({ // line (so we have a quick overview in the logs while the tests are running) // github (to have annotations in the PR) // locally we just want the html report with the traces - reporter: process.env.CI ? [['blob'], ['line'], ['github']] : 'html', + reporter: process.env.CI ? [['blob'], ['line'], ['github']] : 'list', use: { // Base URL to use in actions like `await page.goto('./')`. baseURL: process.env.baseURL ?? 'http://localhost:8089/index.php/',