test: mark failing Vue Nodes Image Preview browser tests as fixme (#8980)

Mark the two browser tests added in #8143 as `test.fixme` — they are
failing on main.

- `opens mask editor from image preview button`
- `shows image context menu options`

- Fixes #8143 (browser test failures)

---------

Co-authored-by: GitHub Action <action@github.com>
This commit is contained in:
Christian Byrne
2026-02-18 18:46:55 -08:00
committed by GitHub
parent faede75bb4
commit 2dbd7e86c3

View File

@@ -29,7 +29,9 @@ test.describe('Vue Nodes Image Preview', () => {
return imagePreview
}
test('opens mask editor from image preview button', async ({ comfyPage }) => {
test.fixme('opens mask editor from image preview button', async ({
comfyPage
}) => {
const imagePreview = await loadImageOnNode(comfyPage)
await imagePreview.locator('[role="img"]').hover()
@@ -38,7 +40,7 @@ test.describe('Vue Nodes Image Preview', () => {
await expect(comfyPage.page.locator('.mask-editor-dialog')).toBeVisible()
})
test('shows image context menu options', async ({ comfyPage }) => {
test.fixme('shows image context menu options', async ({ comfyPage }) => {
await loadImageOnNode(comfyPage)
const nodeHeader = comfyPage.vueNodes.getNodeByTitle('Load Image')