Skip to content

Commit f308c06

Browse files
Increase timeout for page navigation to 60 seconds
1 parent a9d565e commit f308c06

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/find/src/findForUrl.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ export async function findForUrl(url: string, authContext?: AuthContext): Promis
1111
await page.goto(url, {
1212
waitUntil: 'networkidle',
1313
// - looks like default timeout is 3000ms
14-
// - increasing to 20,000ms (20 seconds)
15-
timeout: 20000,
14+
// - increasing for testing
15+
timeout: 60000,
1616
});
1717
console.log(`Scanning ${page.url()}`);
1818

0 commit comments

Comments
 (0)