From 9ef8c7e9a3d1a0d83435f0bd00404b2e0a68e7c9 Mon Sep 17 00:00:00 2001 From: AmanTahiliani Date: Wed, 29 Jul 2026 22:54:36 -0400 Subject: [PATCH] test(#89): stabilize command center visual readiness --- tests/visual/helpers.ts | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tests/visual/helpers.ts b/tests/visual/helpers.ts index fe66d1e..85dcabf 100644 --- a/tests/visual/helpers.ts +++ b/tests/visual/helpers.ts @@ -18,12 +18,7 @@ export async function gotoCommandCenterReady(page: Page): Promise { await page.goto('/') await expect(page.getByTestId('command-center')).toBeVisible() await expect(page.getByTestId('cc-focus')).toBeVisible() - await expect(page.getByTestId('cc-session-9472')).toBeVisible() - // The e2e stack runs with an unreachable OpenF1 base URL, so wait for the - // season-calendar query to settle on its local fallback before screenshotting. - await expect( - page.getByText('Using local meetings because the full calendar could not load.'), - ).toBeVisible() + await expect(page.getByTestId('cc-calendar-1229')).toBeVisible() await waitForScreenshotReady(page) }