mirror of
https://github.com/acid-info/Kurate.git
synced 2025-02-22 12:38:11 +00:00
8 lines
242 B
TypeScript
8 lines
242 B
TypeScript
import { ROUTES } from '../src/lib/routes.js'
|
|
import { expect, test } from '@playwright/test'
|
|
|
|
test('index page has expected header', async ({ page }) => {
|
|
await page.goto(ROUTES.HOME)
|
|
expect(await page.textContent('h1')).toBe('Kurate')
|
|
})
|