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:
parent
54f36bee93
commit
01ab703400
|
|
@ -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 });
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue