From 2dbd7e86c31e7336695beeeefb034984f2a9e546 Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Wed, 18 Feb 2026 18:46:55 -0800 Subject: [PATCH] test: mark failing Vue Nodes Image Preview browser tests as fixme (#8980) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 --- .../tests/vueNodes/interactions/node/imagePreview.spec.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/browser_tests/tests/vueNodes/interactions/node/imagePreview.spec.ts b/browser_tests/tests/vueNodes/interactions/node/imagePreview.spec.ts index d604602cea..fbfcfc727b 100644 --- a/browser_tests/tests/vueNodes/interactions/node/imagePreview.spec.ts +++ b/browser_tests/tests/vueNodes/interactions/node/imagePreview.spec.ts @@ -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')