From 01ab703400ec4a5dc3240996a744cb235140ca11 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Mon, 11 Sep 2023 18:14:05 +0200 Subject: [PATCH] test: restore useIntermediateMergeReport=true test mode in html tests (#26989) This got accidentally removed in https://github.com/microsoft/playwright/pull/26799. --- tests/playwright-test/reporter-html.spec.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/playwright-test/reporter-html.spec.ts b/tests/playwright-test/reporter-html.spec.ts index 1de61a423d..e40f398c90 100644 --- a/tests/playwright-test/reporter-html.spec.ts +++ b/tests/playwright-test/reporter-html.spec.ts @@ -42,7 +42,7 @@ const expect = baseExpect.configure({ timeout: process.env.CI ? 75000 : 25000 }) test.describe.configure({ mode: 'parallel' }); -for (const useIntermediateMergeReport of [false] as const) { +for (const useIntermediateMergeReport of [false, true] as const) { test.describe(`${useIntermediateMergeReport ? 'merged' : 'created'}`, () => { test.use({ useIntermediateMergeReport });