test: restore useIntermediateMergeReport=true test mode in html tests (#26989)

This got accidentally removed in
https://github.com/microsoft/playwright/pull/26799.
This commit is contained in:
Max Schmitt 2023-09-11 18:14:05 +02:00 committed by GitHub
parent 54f36bee93
commit 01ab703400
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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 });