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 37ba3c1 commit 8ab7d46Copy full SHA for 8ab7d46
src/scripts/link-check/linkcheck.ts
@@ -238,6 +238,8 @@ async function main() {
238
// 4) Wait for readiness
239
try {
240
await waitForServerReadiness(BASE_URL, 30) // Wait up to 30 attempts
241
+ console.log("Server ready, waiting additional 10 seconds for all pages to be available...")
242
+ await new Promise((resolve) => setTimeout(resolve, 10000))
243
} catch (err) {
244
console.error("Server did not become ready in time.", err)
245
exit(1)
0 commit comments