mirror of
https://github.com/AmanTahiliani/box-box.git
synced 2026-08-08 04:06:18 -04:00
10 lines
289 B
TypeScript
10 lines
289 B
TypeScript
|
|
import { test } from '@playwright/test'
|
||
|
|
import { gotoRaceStoryReady, screenshotPage } from './helpers'
|
||
|
|
|
||
|
|
test.describe('Race Story visual regression', () => {
|
||
|
|
test('race-story', async ({ page }) => {
|
||
|
|
await gotoRaceStoryReady(page)
|
||
|
|
await screenshotPage(page, 'race-story')
|
||
|
|
})
|
||
|
|
})
|