This commit is contained in:
2025-09-18 10:13:08 -06:00
parent 28f8907259
commit b20e43b951
11 changed files with 1010 additions and 10 deletions

View File

@@ -0,0 +1,8 @@
import { test, expect } from '@playwright/test';
test('homepage has title and grid', async ({ page }) => {
await page.goto('/');
await expect(page).toHaveTitle(/GlowTrack/i);
await expect(page.getByRole('heading', { level: 1 })).toHaveText(/GlowTrack/i);
await expect(page.getByRole('region', { name: /demo grid/i })).toBeVisible();
});