mirror of
https://github.com/kremalicious/blog.git
synced 2025-01-08 20:55:45 +01:00
10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
|
import { test, expect } from '@playwright/test'
|
||
|
|
||
|
test.beforeEach(async ({ page }) => {
|
||
|
await page.goto('/photos')
|
||
|
})
|
||
|
|
||
|
test('meta is correct', async ({ page }) => {
|
||
|
await expect(page).toHaveTitle(/Photos/)
|
||
|
})
|