test(#89): allow seeded calendar readiness

This commit is contained in:
2026-07-29 22:58:21 -04:00
parent de614e6339
commit 8e0d0253c2

View File

@@ -18,7 +18,7 @@ export async function gotoCommandCenterReady(page: Page): Promise<void> {
await page.goto('/')
await expect(page.getByTestId('command-center')).toBeVisible()
await expect(page.getByTestId('cc-focus')).toBeVisible()
await expect(page.getByTestId('cc-calendar-1229')).toBeVisible()
await expect(page.getByTestId('cc-calendar-1229')).toBeVisible({ timeout: 15_000 })
await waitForScreenshotReady(page)
}