add nav tree

This commit is contained in:
2024-10-11 00:23:32 -05:00
parent bba3cf4fc7
commit 3d89c63f8f
4 changed files with 39 additions and 0 deletions

View File

@@ -6,3 +6,8 @@ test('page has headline', async ({ page }) => {
await expect(headline).toBeVisible();
await expect(headline).toHaveText('resumarkdown');
});
test('page has nav tree', async ({ page }) => {
await page.goto('/');
await expect(page.locator('nav')).toBeVisible();
});