Skip to content

Commit 934fc89

Browse files
committed
decrease timeout in hello
1 parent 7184745 commit 934fc89

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/pit/its/hello.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ const { log, args, createPage, closePage, takeScreenshot, waitForServerReady, di
3939
// Look for the text, sometimes rendered in an alert, sometimes in the dom
4040
let m;
4141
try {
42-
m = await page.getByRole('alert').nth(1).innerText({timeout:500});
42+
m = await page.getByRole('alert').nth(1).innerText({timeout:60});
4343
log(`Found ${text} in an 'alert' role: ${m}`);
4444
} catch (e) {
4545
log(`Not Found ${text} in an 'alert' role, looking in DOM`);

0 commit comments

Comments
 (0)