mirror of
https://github.com/acid-info/Kurate.git
synced 2025-02-22 12:38:11 +00:00
7 lines
194 B
TypeScript
7 lines
194 B
TypeScript
import { expect, test } from '@playwright/test'
|
|
|
|
test('index page has expected header', async ({ page }) => {
|
|
await page.goto('/')
|
|
expect(await page.textContent('span')).toBe('The Outlet')
|
|
})
|