| 12345678910111213141516171819202122232425262728293031 |
- import { test, expect } from "../fixtures"
- import { openSidebar, withSession } from "../actions"
- import { promptSelector } from "../selectors"
- test("sidebar session links navigate to the selected session", async ({ page, slug, sdk, gotoSession }) => {
- const stamp = Date.now()
- const one = await sdk.session.create({ title: `e2e sidebar nav 1 ${stamp}` }).then((r) => r.data)
- const two = await sdk.session.create({ title: `e2e sidebar nav 2 ${stamp}` }).then((r) => r.data)
- if (!one?.id) throw new Error("Session create did not return an id")
- if (!two?.id) throw new Error("Session create did not return an id")
- try {
- await gotoSession(one.id)
- await openSidebar(page)
- const target = page.locator(`[data-session-id="${two.id}"] a`).first()
- await expect(target).toBeVisible()
- await target.scrollIntoViewIfNeeded()
- await target.click()
- await expect(page).toHaveURL(new RegExp(`/${slug}/session/${two.id}(?:\\?|#|$)`))
- await expect(page.locator(promptSelector)).toBeVisible()
- await expect(page.locator(`[data-session-id="${two.id}"] a`).first()).toHaveClass(/\bactive\b/)
- } finally {
- await sdk.session.delete({ sessionID: one.id }).catch(() => undefined)
- await sdk.session.delete({ sessionID: two.id }).catch(() => undefined)
- }
- })
|