Barbara Gomes 98686ad0b8
style: personas (#156)
Co-authored-by: Vojtech Simetka <vojtech@simetka.cz>
2023-02-09 15:07:25 +01:00

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')
})