From 3d588a2017999b657a1ac566e9b120087054daad Mon Sep 17 00:00:00 2001 From: Sid Vishnoi <8426945+sidvishnoi@users.noreply.github.com> Date: Mon, 20 Jan 2025 19:05:29 +0530 Subject: [PATCH] playwright: use github reporter in CI --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 001dfe47..e44406d7 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -19,7 +19,7 @@ export default defineConfig({ retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 1 : undefined, reporter: [ - ['list'], + [process.env.CI ? 'github' : 'list'], [ 'html', { open: 'never', outputFolder: path.join(testDir, 'playwright-report') },