From 7927b21f4a38b37e55a179e362a6e6ba0c1726eb Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Fri, 15 Sep 2023 10:14:29 +0200 Subject: [PATCH] Enable the Playwright trace (#7050) * Enable the Playwright trace * Switch to `'on-first-retry'` --- ui-tests/playwright.config.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/ui-tests/playwright.config.ts b/ui-tests/playwright.config.ts index 7975faa90a..009174bfb3 100644 --- a/ui-tests/playwright.config.ts +++ b/ui-tests/playwright.config.ts @@ -4,6 +4,7 @@ module.exports = { ...baseConfig, use: { appPath: '', + trace: 'on-first-retry', video: 'retain-on-failure', }, retries: 1,