import { test, expect } from "../fixtures" import { openPalette } from "../actions" test("search palette opens and closes", async ({ page, gotoSession }) => { await gotoSession() const dialog = await openPalette(page) await page.keyboard.press("Escape") await expect(dialog).toHaveCount(0) })