chore: cleanup

This commit is contained in:
Adam
2026-01-19 05:22:35 -06:00
parent f1daf3b430
commit 182c43a78f
7 changed files with 57 additions and 32 deletions

View File

@@ -1,9 +1,8 @@
import { test, expect } from "@playwright/test"
import { gotoSession, promptSelector, terminalSelector, terminalToggleKey } from "./utils"
import { test, expect } from "./fixtures"
import { terminalSelector, terminalToggleKey } from "./utils"
test("terminal panel can be toggled", async ({ page }) => {
await gotoSession(page)
await expect(page.locator(promptSelector)).toBeVisible()
test("terminal panel can be toggled", async ({ page, gotoSession }) => {
await gotoSession()
const terminal = page.locator(terminalSelector)
const initiallyOpen = await terminal.isVisible()