From e26f4edb598bed6419d163f68f26b067dadb2dfa Mon Sep 17 00:00:00 2001 From: JennyNou <167806377+JennyNou@users.noreply.github.com> Date: Wed, 15 Apr 2026 11:41:46 -0400 Subject: [PATCH] Turn video off for regression run pipeline --- playwright-tests/playwright.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/playwright-tests/playwright.config.ts b/playwright-tests/playwright.config.ts index 5e632267..682ee0fc 100644 --- a/playwright-tests/playwright.config.ts +++ b/playwright-tests/playwright.config.ts @@ -91,7 +91,7 @@ export default defineConfig({ baseURL: process.env.BASE_URL || 'https://selfservice.test.glassclaim.com', trace: 'on-first-retry', headless: process.env.CI ? true : false, - video: 'retain-on-failure', + video: 'off', viewport: { width: 1920, height: 1080 }, screenshot: "only-on-failure", actionTimeout: process.env.CI ? 90_000 : 60_000,