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 2dda979 commit 802352fCopy full SHA for 802352f
site-validation/external-links.test.js
@@ -1,4 +1,4 @@
1
-jest.setTimeout(10 * 60 * 1000)
+jest.setTimeout(120 * 60 * 1000)
2
3
const link = require("linkinator")
4
const status = require("http-status")
@@ -89,7 +89,7 @@ describe("site external links", () => {
89
timeout: 30 * 1000,
90
retry: true, // Retry on 429
91
retryErrors: true, // Retry on 5xx
92
- retryErrorsCount: 6,
+ retryErrorsCount: 12,
93
retryErrorsJitter: 8000, // Default is 3000
94
})
95
@@ -109,7 +109,7 @@ const retryUrl = async url => {
109
return retry(statusCode)
110
}
111
112
- return promiseRetry(hitUrl, { retries: 8, minTimeout: 8 * 1000 })
+ return promiseRetry(hitUrl, { retries: 8, minTimeout: 80 * 1000 })
113
.then(() => true)
114
.catch(() => false)
115
0 commit comments