From 7bffff5790e28243a815c985135e908247b563db Mon Sep 17 00:00:00 2001 From: Nick Wittland <54022880+netcoding87@users.noreply.github.com> Date: Sun, 31 Dec 2023 22:43:10 +0100 Subject: [PATCH] docs: configuration of junit reporter in ci.md (#28817) --- docs/src/ci.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/ci.md b/docs/src/ci.md index 38152d8332..c5d131b3b7 100644 --- a/docs/src/ci.md +++ b/docs/src/ci.md @@ -227,7 +227,7 @@ Note: The JUnit reporter needs to be configured accordingly via import { defineConfig } from '@playwright/test'; export default defineConfig({ - reporter: ['junit', { outputFile: 'test-results/e2e-junit-results.xml' }], + reporter: [['junit', { outputFile: 'test-results/e2e-junit-results.xml' }]], }); ``` in `playwright.config.ts`.