Skip to content

Commit f67435f

Browse files
authored
increase navigation timeout for large documents (#1918)
* increase navigation timeout for large documents * remove debug
1 parent bc90211 commit f67435f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rules/links/linkchecker.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ export async function check(sr, done) {
121121
}
122122
});
123123

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

126126
await browser.close();
127127
done();

0 commit comments

Comments
 (0)