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('/')`. */