From ae48d0c447ed37a72a284d46f8a2798247b38fa7 Mon Sep 17 00:00:00 2001 From: Jon Koops Date: Wed, 25 Oct 2023 17:24:26 +0200 Subject: [PATCH] Enable `github` reporter for Playwright (#24290) --- js/apps/account-ui/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/apps/account-ui/playwright.config.ts b/js/apps/account-ui/playwright.config.ts index c2c8825cf6..5090beec9c 100644 --- a/js/apps/account-ui/playwright.config.ts +++ b/js/apps/account-ui/playwright.config.ts @@ -9,7 +9,7 @@ export default defineConfig({ forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: 1, - reporter: "html", + reporter: process.env.CI ? "github" : "list", use: { baseURL: process.env.CI ? "http://localhost:8080/realms/master/account/"