We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abeff06 commit 035e24dCopy full SHA for 035e24d
test/config.ts
@@ -51,7 +51,11 @@ globalSetup(async () => {
51
const config: Config = {
52
testDir: path.join(__dirname, "e2e"), // Search for tests in this directory.
53
timeout: 30000, // Each test is given 30 seconds.
54
- retries: 2, // Retry failing tests 2 times
+ retries: 3, // Retry failing tests 2 times
55
+}
56
+
57
+if (process.env.CI) {
58
+ config.retries = 2
59
}
60
61
setConfig(config)
0 commit comments