From bc6a74191799cdc7c0cac11e20c8db4cf36f88e4 Mon Sep 17 00:00:00 2001 From: "yuqi.pyq" Date: Fri, 20 Oct 2023 16:51:31 +0800 Subject: [PATCH] chore: merge reports from multiple shards --- playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright.config.ts b/playwright.config.ts index 7e6926166f..81e293c984 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -11,7 +11,7 @@ export default defineConfig({ forbidOnly: !!process.env.CI, retries: process.env.CI ? 2 : 0, workers: process.env.CI ? 10 : 10, - reporter: 'html', + reporter: process.env.CI ? 'blob' : 'html', use: { actionTimeout: 0, trace: 'on-first-retry',