Skip to content

Commit

Permalink
increase navigation timeout for large documents (#1918)
Browse files Browse the repository at this point in the history
* increase navigation timeout for large documents

* remove debug
  • Loading branch information
deniak authored Feb 5, 2025
1 parent bc90211 commit f67435f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/rules/links/linkchecker.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export async function check(sr, done) {
}
});

await page.goto(sr.url);
await page.goto(sr.url, { waitUntil: 'load', timeout: 60000 });

await browser.close();
done();
Expand Down

0 comments on commit f67435f

Please sign in to comment.