From c7bc4e4f6349dec6c685dbe626f38d3ade22c76c Mon Sep 17 00:00:00 2001 From: brunomachadors Date: Sun, 5 Jan 2025 22:06:41 +0000 Subject: [PATCH] html report --- playwright.config.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index c598cdb..e10e69b 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -10,7 +10,11 @@ export default defineConfig({ retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 1 : undefined, - reporter: [['line'], ['github']], + reporter: [ + ['line'], + ['github'], + ['html', { outputFolder: 'playwright-report', open: 'always' }], + ], expect: { timeout: 10_000, },