webui-ng/e2e/demo.test.ts
2025-05-03 18:21:06 +02:00

6 lines
182 B
TypeScript

import { expect, test } from '@playwright/test';
test('home page has expected h1', async ({ page }) => {
await page.goto('/');
await expect(page.locator('h1')).toBeVisible();
});