From 2c0c4df90e684cda161d6e05be7e2bbecbf6fe02 Mon Sep 17 00:00:00 2001 From: John McLear Date: Sun, 5 Apr 2026 01:57:49 +0100 Subject: [PATCH] chore: show individual test names in CI Playwright output (#7462) Add 'list' reporter alongside 'github' reporter in CI. The 'github' reporter only shows failures as PR annotations. The 'list' reporter shows each test with pass/fail status in the log output, making it easy to see which tests ran and passed. Co-authored-by: Claude Opus 4.6 (1M context) --- src/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/playwright.config.ts b/src/playwright.config.ts index d54e2a69e..bd3068405 100644 --- a/src/playwright.config.ts +++ b/src/playwright.config.ts @@ -13,7 +13,7 @@ export default defineConfig({ fullyParallel: true, /* Fail the build on CI if you accidentally left test.only in the source code. */ /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - reporter: process.env.CI ? 'github' : 'html', + reporter: process.env.CI ? [['github'], ['list']] : 'html', expect: { timeout: defaultExpectTimeout }, timeout: defaultTestTimeout, retries: process.env.CI ? 2 : 0,