mirror of
https://github.com/ivabus/gui
synced 2025-06-08 08:10:26 +03:00
5 lines
147 B
TypeScript
5 lines
147 B
TypeScript
import { expect, test } from '@playwright/test';
|
|
|
|
test('index page has expected Discover header', async ({ page }) => {
|
|
await page.goto('/');
|
|
});
|