test(app): initial e2e test setup
This commit is contained in:
parent
23e9c02a7f
commit
03d7467ea2
11 changed files with 207 additions and 1 deletions
6
packages/app/e2e/home.spec.ts
Normal file
6
packages/app/e2e/home.spec.ts
Normal 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()
|
||||
})
|
||||
Loading…
Add table
Add a link
Reference in a new issue