From db8efa267d7ca1006ba114eb6f4411c20501d5e6 Mon Sep 17 00:00:00 2001 From: maguire-arman Date: Thu, 10 Jul 2025 10:09:10 -0400 Subject: [PATCH] Adds Ortoni reporter Adds the Ortoni reporter to the Playwright configuration. This change ensures that Ortoni reports are generated both in CI and local environments, providing comprehensive test result analysis. --- playwright-tests/playwright.config.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/playwright-tests/playwright.config.ts b/playwright-tests/playwright.config.ts index 5d3be4118..2a1c8a4b8 100644 --- a/playwright-tests/playwright.config.ts +++ b/playwright-tests/playwright.config.ts @@ -81,7 +81,8 @@ export default defineConfig({ /* Reporter to use. See https://playwright.dev/docs/test-reporters */ reporter: process.env.CI? [ ['junit'], - ['playwright-jira-reporter', jiraReportConfig] + ['playwright-jira-reporter', jiraReportConfig], + ['ortoni-report', ortoniReportConfig] ]: [ ['ortoni-report', ortoniReportConfig], ['list']