From 038ea3365a02b3056e45673f4eff997d8e1c1ccc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Omar=20L=C3=B3pez?= Date: Mon, 17 Jan 2022 13:23:46 -0700 Subject: [PATCH] Removes e2e retries and videos (#1537) --- playwright.config.ts | 7 ------- 1 file changed, 7 deletions(-) diff --git a/playwright.config.ts b/playwright.config.ts index 07a72142d6..82c824f154 100644 --- a/playwright.config.ts +++ b/playwright.config.ts @@ -4,7 +4,6 @@ const config: PlaywrightTestConfig = { forbidOnly: !!process.env.CI, testDir: "playwright", timeout: 60_000, - retries: process.env.CI ? 3 : 0, reporter: "list", globalSetup: require.resolve("./playwright/lib/globalSetup"), outputDir: "playwright/results", @@ -19,12 +18,6 @@ const config: PlaywrightTestConfig = { locale: "en-US", trace: "retain-on-failure", headless: !!process.env.CI || !!process.env.PLAYWRIGHT_HEADLESS, - video: "on-first-retry", - contextOptions: { - recordVideo: { - dir: "playwright/videos", - }, - }, }, projects: [ {