From 1e64d3a325517990fc8ad1d6fd387b74275c123d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ari=20Perkki=C3=B6?= Date: Tue, 20 May 2025 08:51:47 +0300 Subject: [PATCH] test(e2e): use list reporter --- e2e/playwright.config.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/e2e/playwright.config.ts b/e2e/playwright.config.ts index 2b7fcaf00..e02bb00a8 100644 --- a/e2e/playwright.config.ts +++ b/e2e/playwright.config.ts @@ -56,6 +56,8 @@ export default defineConfig({ ...serverOptions, }, ], + reporter: process.env.CI ? [['list'], ['github']] : 'list', + expect: { timeout: process.env.CI ? 30_000 : 10_000, },