diff --git a/e2e/plugin-e2e/playwright.config.ts b/e2e/plugin-e2e/playwright.config.ts index 007a498a2db..b34eed48813 100644 --- a/e2e/plugin-e2e/playwright.config.ts +++ b/e2e/plugin-e2e/playwright.config.ts @@ -9,7 +9,7 @@ export default defineConfig({ retries: process.env.CI ? 2 : 0, /* Opt out of parallel tests on CI. */ workers: process.env.CI ? 1 : undefined, - reporter: 'html', + reporter: [['html', { outputFolder: '../../playwright-report' }]], use: { baseURL: `http://${process.env.HOST || 'localhost'}:${process.env.PORT || 3000}`, trace: 'retain-on-failure',