From f45c8dd06db6f3c19731a16a15a617da0efc59a9 Mon Sep 17 00:00:00 2001 From: Sriramajeyam Sugumaran <153843+yesoreyeram@users.noreply.github.com> Date: Thu, 18 Jan 2024 16:28:29 +0000 Subject: [PATCH] updated playwright report type --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 583aa39f..9f123783 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -6,7 +6,7 @@ export default defineConfig({ forbidOnly: !!process.env.CI, // eslint-disable-line no-undef retries: process.env.CI ? 2 : 0, // eslint-disable-line no-undef workers: process.env.CI ? 1 : undefined, // eslint-disable-line no-undef - reporter: 'list', + reporter: 'html', use: { baseURL: 'http://localhost:3000', trace: 'on-first-retry',