From 728b4814b4103c2878ff9afd3b908e5fc7e95784 Mon Sep 17 00:00:00 2001 From: Yury Semikhatsky Date: Thu, 26 Sep 2024 19:32:54 -0700 Subject: [PATCH] test: fix recently added junit tests (#32844) --- tests/playwright-test/reporter-junit.spec.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/playwright-test/reporter-junit.spec.ts b/tests/playwright-test/reporter-junit.spec.ts index eb1dcf529ef26..2b182e00c0b25 100644 --- a/tests/playwright-test/reporter-junit.spec.ts +++ b/tests/playwright-test/reporter-junit.spec.ts @@ -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: [ {} ] }; `,