Merge branch 'main' into drjkl/lowered-expectations

This commit is contained in:
Alexander Brown
2026-01-12 20:19:47 -08:00
committed by GitHub
46 changed files with 617 additions and 212 deletions

View File

@@ -135,8 +135,11 @@ test.describe('Menu', () => {
// Checkmark should be invisible again (panel is hidden)
await expect(checkmark).toHaveClass(/invisible/)
// Click outside to close menu
await comfyPage.page.locator('body').click({ position: { x: 10, y: 10 } })
// Click in top-right corner to close menu (avoid hamburger menu at top-left)
const viewport = comfyPage.page.viewportSize()!
await comfyPage.page
.locator('body')
.click({ position: { x: viewport.width - 10, y: 10 } })
// Verify menu is now closed
await expect(menu).not.toBeVisible()