Files
cog-socket/e2e/demo.test.ts
Shaheed Azaad e776b7f041 Initial commit
2025-07-12 16:41:30 +02:00

7 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();
});