Removes e2e retries and videos (#1537)

This commit is contained in:
Omar López 2022-01-17 13:23:46 -07:00 committed by GitHub
parent 2289c68979
commit 038ea3365a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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: [
{