Skip to content

Commit

Permalink
test: fix recently added junit tests (#32844)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-s committed Sep 27, 2024
1 parent 1a3d3f6 commit 728b481
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/playwright-test/reporter-junit.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ for (const useIntermediateMergeReport of [false, true] as const) {
'package.json': `{ "name": "foo" }`,
'bar/playwright.config.js': `
module.exports = {
reporter: [['junit', { outputFile: 'results.xml' }]],
reporter: [['junit', { outputFile: 'results.xml' }], ['line', {}]],
projects: [ {} ]
};
`,
Expand Down Expand Up @@ -561,7 +561,7 @@ for (const useIntermediateMergeReport of [false, true] as const) {
'package.json': `{ "name": "foo" }`,
'bar/playwright.config.js': `
module.exports = {
reporter: [['junit', {}]],
reporter: [['junit', {}], ['line', {}]],
projects: [ {} ]
};
`,
Expand Down

0 comments on commit 728b481

Please sign in to comment.