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.
This commit is contained in:
maguire-arman 2025-07-10 10:09:10 -04:00
parent 43027f6d7b
commit db8efa267d

View file

@ -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']