From 4e209de616306ae5a214944e4c405d9e48180670 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/',