test: fix recently added junit tests (#32844)

This commit is contained in:
Yury Semikhatsky 2024-09-26 19:32:54 -07:00 committed by GitHub
parent 1a3d3f699b
commit 728b4814b4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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: [ {} ]
};
`,
@ -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: [ {} ]
};
`,