mirror of
https://github.com/AmanTahiliani/box-box.git
synced 2026-08-07 19:56:18 -04:00
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')
|
||
|
|
})
|
||
|
|
})
|