docs: configuration of junit reporter in ci.md (#28817)

This commit is contained in:
Nick Wittland 2023-12-31 22:43:10 +01:00 committed by GitHub
parent df4b11c169
commit 7bffff5790
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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`.