11 lines
372 B
TypeScript
11 lines
372 B
TypeScript
import { test, expect } from "../fixtures"
|
|
import { promptSelector } from "../selectors"
|
|
import { dirPath } 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()
|
|
})
|