hestia/e2e/demo.test.ts
Benjamin Palko d055c4bc40 init
2024-12-06 16:14:24 -05: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();
});