mirror of
https://github.com/acid-info/Kurate.git
synced 2025-02-23 04:58:17 +00:00
7 lines
198 B
TypeScript
7 lines
198 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');
|
||
|
});
|