Skip to content

Commit a2b4c1d

Browse files
committed
increase timeout for progress bar disappearing
1 parent 4bd3d7d commit a2b4c1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ui/common.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ export async function waitForPageLoad(page: Page, name: string) {
4444
const bars = await progressBars.all();
4545
if (bars.length > 0) {
4646
await Promise.all(
47-
bars.map(bar => expect(bar).toBeHidden({ timeout: 10000 }))
47+
bars.map(bar => expect(bar).toBeHidden({ timeout: 30000 }))
4848
);
4949
}
5050

0 commit comments

Comments
 (0)