fix(#91): wait for seeded calendar in fidelity capture

This commit is contained in:
2026-07-29 22:55:08 -04:00
parent 9ef8c7e9a3
commit de614e6339

View File

@@ -19,8 +19,7 @@ async function gotoCommandCenterFidelityReady(page: Page): Promise<void> {
await page.goto('/') await page.goto('/')
await expect(page.getByTestId('command-center')).toBeVisible() await expect(page.getByTestId('command-center')).toBeVisible()
await expect(page.getByTestId('cc-focus')).toBeVisible() await expect(page.getByTestId('cc-focus')).toBeVisible()
// The seeded full-session card confirms the session rail has rendered. await expect(page.getByTestId('cc-calendar-1229')).toBeVisible()
await expect(page.getByTestId('cc-session-9472')).toBeVisible()
await page.waitForLoadState('networkidle') await page.waitForLoadState('networkidle')
await waitForScreenshotReady(page) await waitForScreenshotReady(page)
} }