From bae35dd8a57175e39b3b9af93870701225cd26a1 Mon Sep 17 00:00:00 2001 From: chan Date: Fri, 3 Apr 2026 11:48:38 +0900 Subject: [PATCH] chore(ci): disable auto-open of playwright html reporter --- adminfront/playwright.config.ts | 2 +- devfront/playwright.config.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/adminfront/playwright.config.ts b/adminfront/playwright.config.ts index 0e21a206..e010bcdf 100644 --- a/adminfront/playwright.config.ts +++ b/adminfront/playwright.config.ts @@ -30,7 +30,7 @@ export default defineConfig({ /* Opt out of parallel tests on CI. */ workers: configuredWorkers ?? (process.env.CI ? 1 : undefined), /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - reporter: "html", + reporter: [["html", { open: "never" }], ["list"]], /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Base URL to use in actions like `await page.goto('/')`. */ diff --git a/devfront/playwright.config.ts b/devfront/playwright.config.ts index 53716cfa..ea5ab482 100644 --- a/devfront/playwright.config.ts +++ b/devfront/playwright.config.ts @@ -26,7 +26,7 @@ export default defineConfig({ /* Opt out of parallel tests on CI. */ workers: configuredWorkers ?? (process.env.CI ? 1 : undefined), /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - reporter: "html", + reporter: [["html", { open: "never" }], ["list"]], /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { /* Base URL to use in actions like `await page.goto('/')`. */