fix: update path for e2e videos

This commit is contained in:
Joe Previte
2021-04-14 12:03:47 -07:00
parent c9fa931a0b
commit d6f0725399
4 changed files with 15 additions and 18 deletions

View File

@@ -51,7 +51,11 @@ globalSetup(async () => {
const config: Config = {
testDir: path.join(__dirname, "e2e"), // Search for tests in this directory.
timeout: 30000, // Each test is given 30 seconds.
retries: 2, // Retry failing tests 2 times
retries: 3, // Retry failing tests 2 times
}
if (process.env.CI) {
config.retries = 2
}
setConfig(config)