mirror of
https://github.com/AmanTahiliani/box-box.git
synced 2026-08-07 11:54:59 -04:00
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>
10 lines
294 B
TypeScript
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')
|
|
})
|
|
})
|