From a736a9143f56646fd92a89cb5a45e6a79441e724 Mon Sep 17 00:00:00 2001 From: Laurent Bossavit Date: Tue, 29 Oct 2024 19:44:32 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=92=9A(ci)=20use=20list=20reporter=20in?= =?UTF-8?q?=20addition=20to=20html?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This will output lines to the testing jobs' logs so we know how many tests are run even when jobs are eventually cancelled. --- src/frontend/apps/e2e/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/frontend/apps/e2e/playwright.config.ts b/src/frontend/apps/e2e/playwright.config.ts index 57ea729..849def7 100644 --- a/src/frontend/apps/e2e/playwright.config.ts +++ b/src/frontend/apps/e2e/playwright.config.ts @@ -22,7 +22,7 @@ export default defineConfig({ /* Opt out of parallel tests on CI. */ workers: process.env.CI ? 1 : undefined, /* Reporter to use. See https://playwright.dev/docs/test-reporters */ - reporter: [['html', { outputFolder: './report' }]], + reporter: [['html', { outputFolder: './report' }], ['list']], /* Shared settings for all the projects below. See https://playwright.dev/docs/api/class-testoptions. */ use: { baseURL: baseURL,