| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- import { test, expect } from "../fixtures"
- import { openSidebar, toggleSidebar, withSession } from "../actions"
- test("sidebar can be collapsed and expanded", async ({ page, gotoSession }) => {
- await gotoSession()
- await openSidebar(page)
- const button = page.getByRole("button", { name: /toggle sidebar/i }).first()
- await expect(button).toHaveAttribute("aria-expanded", "true")
- await toggleSidebar(page)
- await expect(button).toHaveAttribute("aria-expanded", "false")
- await toggleSidebar(page)
- await expect(button).toHaveAttribute("aria-expanded", "true")
- })
- test("sidebar collapsed state persists across navigation and reload", async ({ page, sdk, gotoSession }) => {
- await withSession(sdk, "sidebar persist session 1", async (session1) => {
- await withSession(sdk, "sidebar persist session 2", async (session2) => {
- await gotoSession(session1.id)
- await openSidebar(page)
- const button = page.getByRole("button", { name: /toggle sidebar/i }).first()
- await toggleSidebar(page)
- await expect(button).toHaveAttribute("aria-expanded", "false")
- await gotoSession(session2.id)
- await expect(button).toHaveAttribute("aria-expanded", "false")
- await page.reload()
- await expect(button).toHaveAttribute("aria-expanded", "false")
- const opened = await page.evaluate(
- () => JSON.parse(localStorage.getItem("opencode.global.dat:layout") ?? "{}").sidebar?.opened,
- )
- await expect(opened).toBe(false)
- })
- })
- })
|