Files
opencode/packages/app/e2e/navigation.spec.ts
2026-01-19 09:03:52 -06:00

10 lines
340 B
TypeScript

import { test, expect } from "./fixtures"
import { dirPath, promptSelector } from "./utils"
test("project route redirects to /session", async ({ page, directory, slug }) => {
await page.goto(dirPath(directory))
await expect(page).toHaveURL(new RegExp(`/${slug}/session`))
await expect(page.locator(promptSelector)).toBeVisible()
})