test(app): initial e2e test setup

This commit is contained in:
Adam
2026-01-17 20:52:21 -06:00
parent 23e9c02a7f
commit 03d7467ea2
11 changed files with 207 additions and 1 deletions

View File

@@ -0,0 +1,6 @@
import { test, expect } from "@playwright/test"
test("home shows recent projects header", async ({ page }) => {
await page.goto("/")
await expect(page.getByText("Recent projects")).toBeVisible()
})