Files
box-box/tests/visual/live-active.spec.ts
AmanTahiliani e66a874755 fix(#74): settle on just-finished session and coherent feed health
Prefer previous_completed_session for Live settling link/poll/readiness so an
older ready default cannot short-circuit handoff; show reconnecting when phase
is disconnected even if browser SSE stays open; refresh Live visuals and add
active responsive snapshots against the Weekend shell.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-12 19:46:31 -04:00

10 lines
294 B
TypeScript

import { test } from '@playwright/test'
import { gotoLiveActiveReady, screenshotPage } from './helpers'
test.describe('Live active visual regression', () => {
test('live-active', async ({ page }) => {
await gotoLiveActiveReady(page)
await screenshotPage(page, 'live-active')
})
})