Skip to content

Commit 793a6be

Browse files
committed
try longer timeout
1 parent bc2c3d5 commit 793a6be

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

playwright/calendar.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ test("test", async ({ page }) => {
1212
const nextButton = calendar.locator(".calendar-nav-next");
1313

1414
// Assert the calendar is displayed
15-
await expect(calendar).toBeVisible();
15+
await expect(calendar).toBeVisible({ timeout: 30000 });
1616
// Assert the current month is displayed
1717
const currentMonth = calendar.locator(".calendar-month-select");
1818
let currentMonthText = await currentMonth.inputValue();

0 commit comments

Comments
 (0)