kepler-chat/e2e/demo.test.ts
Thomas G. Lopes c0273b11c1 init
2025-06-13 14:14:24 +01: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();
});