From 6d378341115cf9bd786b89216831cf4b50251d0c Mon Sep 17 00:00:00 2001 From: Christian Byrne Date: Thu, 23 Oct 2025 17:53:52 -0700 Subject: [PATCH] [chore] fix LOD test regressed by 4-way resize drag PR (#6238) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Trigger CI to regenerate Playwright snapshots affected by the four-corner Vue node resize feature merged in #6187. This empty commit will trigger the automatic snapshot update workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6238-chore-update-Playwright-snapshots-2956d73d36508159b1f7e6e0e4d16d9f) by [Unito](https://www.unito.io) --- browser_tests/tests/vueNodes/nodeStates/lod.spec.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/browser_tests/tests/vueNodes/nodeStates/lod.spec.ts b/browser_tests/tests/vueNodes/nodeStates/lod.spec.ts index f8c94aba59..cfe0ba1b3b 100644 --- a/browser_tests/tests/vueNodes/nodeStates/lod.spec.ts +++ b/browser_tests/tests/vueNodes/nodeStates/lod.spec.ts @@ -23,10 +23,10 @@ test.describe('Vue Nodes - LOD', () => { const vueNodesContainer = comfyPage.vueNodes.nodes const textboxesInNodes = vueNodesContainer.getByRole('textbox') - const buttonsInNodes = vueNodesContainer.getByRole('button') + const comboboxesInNodes = vueNodesContainer.getByRole('combobox') await expect(textboxesInNodes.first()).toBeVisible() - await expect(buttonsInNodes.first()).toBeVisible() + await expect(comboboxesInNodes.first()).toBeVisible() await comfyPage.zoom(120, 10) await comfyPage.nextFrame() @@ -34,7 +34,7 @@ test.describe('Vue Nodes - LOD', () => { await expect(comfyPage.canvas).toHaveScreenshot('vue-nodes-lod-active.png') await expect(textboxesInNodes.first()).toBeHidden() - await expect(buttonsInNodes.first()).toBeHidden() + await expect(comboboxesInNodes.first()).toBeHidden() await comfyPage.zoom(-120, 10) await comfyPage.nextFrame() @@ -43,6 +43,6 @@ test.describe('Vue Nodes - LOD', () => { 'vue-nodes-lod-inactive.png' ) await expect(textboxesInNodes.first()).toBeVisible() - await expect(buttonsInNodes.first()).toBeVisible() + await expect(comboboxesInNodes.first()).toBeVisible() }) })