mirror of
https://github.com/kremalicious/blog.git
synced 2024-11-22 09:56:51 +01:00
10 lines
213 B
TypeScript
10 lines
213 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/)
|
|
})
|