two column layout for desktop

This commit is contained in:
2024-10-12 01:17:44 -05:00
parent 5acb6af50a
commit ff98c46ed2
5 changed files with 41 additions and 2 deletions

View File

@@ -9,3 +9,8 @@ test('desktop page does not have nav toggle', async ({ page }) => {
await page.goto('/');
await expect(page.locator('nav button')).toBeHidden();
});
test('desktop page has two-column layout', async ({ page }) => {
await page.goto('/');
await expect(page.locator('#pane-preview')).toBeVisible();
});