rtpunish-ui/e2e/demo.test.ts
kevin 73a596e68d
Some checks failed
Build / Build application (push) Failing after 3m19s
Fix action and test
2024-11-12 15:48:45 +00:00

6 lines
166 B
TypeScript

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