| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- import { test, expect } from "../fixtures"
- import { createTestProject, cleanupTestProject, openSidebar, clickMenuItem, openProjectMenu } from "../actions"
- import { projectSwitchSelector } from "../selectors"
- import { dirSlug } from "../utils"
- test("closing active project navigates to another open project", async ({ page, project }) => {
- await page.setViewportSize({ width: 1400, height: 800 })
- const other = await createTestProject()
- const otherSlug = dirSlug(other)
- try {
- await project.open({ extra: [other] })
- await openSidebar(page)
- const otherButton = page.locator(projectSwitchSelector(otherSlug)).first()
- await expect(otherButton).toBeVisible()
- await otherButton.click()
- await expect(page).toHaveURL(new RegExp(`/${otherSlug}/session`))
- const menu = await openProjectMenu(page, otherSlug)
- await clickMenuItem(menu, /^Close$/i, { force: true })
- await expect
- .poll(
- () => {
- const pathname = new URL(page.url()).pathname
- if (new RegExp(`^/${project.slug}/session(?:/[^/]+)?/?$`).test(pathname)) return "project"
- if (pathname === "/") return "home"
- return ""
- },
- { timeout: 15_000 },
- )
- .toMatch(/^(project|home)$/)
- await expect(page).not.toHaveURL(new RegExp(`/${otherSlug}/session(?:[/?#]|$)`))
- await expect
- .poll(
- async () => {
- return await page.locator(projectSwitchSelector(otherSlug)).count()
- },
- { timeout: 15_000 },
- )
- .toBe(0)
- } finally {
- await cleanupTestProject(other)
- }
- })
|