From 1f9d09a966b5b9c665cca1c67869eedc14d1c0d5 Mon Sep 17 00:00:00 2001 From: mozrokafor <94625718+mozrokafor@users.noreply.github.com> Date: Mon, 11 Dec 2023 13:15:22 -0500 Subject: [PATCH] revert to html reports --- playwright.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playwright.config.js b/playwright.config.js index 3784ed648..8027c2acc 100644 --- a/playwright.config.js +++ b/playwright.config.js @@ -47,7 +47,7 @@ export default defineConfig({ workers: process.env.CI ? 1 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - reporter: process.env.CI ? 'github' : 'html', + reporter: process.env.CI ? [['github'], ['html']] : 'html', /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { @@ -118,7 +118,7 @@ export default defineConfig({ /* Run your local dev server before starting the tests */ webServer: { command: 'npm run build; npm start', - url: process.env.E2E_TEST_BASE_URL, + port: 6060, reuseExistingServer: !process.env.CI, // Building the app can take some time: timeout: 600_000,