test(app): initial e2e test setup

This commit is contained in:
Adam
2026-01-17 20:52:21 -06:00
parent 593694883f
commit e14b9eda3a
11 changed files with 207 additions and 1 deletions
+6
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()
})