refactor to use CSS grid

This commit is contained in:
2024-10-12 23:47:09 -05:00
parent 8ac0f6b931
commit 8e32989785
16 changed files with 155 additions and 199 deletions

View File

@@ -2,9 +2,7 @@ import { expect, test } from '@playwright/test';
test('page has headline', async ({ page }) => {
await page.goto('/');
const headline = page.locator('header h1');
await expect(headline).toBeVisible();
await expect(headline).toHaveText('resumarkdown');
await expect(page.getByRole('banner')).toHaveText('resumarkdown');
});
test('nav items work', async ({ page }) => {