From 99abc2ec7b33369374756287c6344944c817ecd7 Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Thu, 10 Jul 2025 11:53:27 -0400 Subject: [PATCH] Adds JUnit reporter Adds the JUnit reporter to the Playwright configuration. This allows for generating JUnit-compatible XML reports, which can be useful for integrating with CI/CD systems and other tools that consume JUnit reports. --- playwright-tests/playwright.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/playwright-tests/playwright.config.ts b/playwright-tests/playwright.config.ts index 2a1c8a4b8..f0bba50e8 100644 --- a/playwright-tests/playwright.config.ts +++ b/playwright-tests/playwright.config.ts @@ -85,6 +85,7 @@ export default defineConfig({ ['ortoni-report', ortoniReportConfig] ]: [ ['ortoni-report', ortoniReportConfig], + ['junit'], ['list'] ], timeout: 240_000,