diff --git a/browser_tests/tests/vueNodes/interactions/links/linkInteraction.spec.ts b/browser_tests/tests/vueNodes/interactions/links/linkInteraction.spec.ts index 508c307edb..fa3ad9f8e4 100644 --- a/browser_tests/tests/vueNodes/interactions/links/linkInteraction.spec.ts +++ b/browser_tests/tests/vueNodes/interactions/links/linkInteraction.spec.ts @@ -94,7 +94,7 @@ async function connectSlots( const fromLoc = slotLocator(page, from.nodeId, from.index, false) const toLoc = slotLocator(page, to.nodeId, to.index, true) await expectVisibleAll(fromLoc, toLoc) - await fromLoc.dragTo(toLoc) + await fromLoc.dragTo(toLoc, { force: true }) await nextFrame() } @@ -183,7 +183,7 @@ test.describe('Vue Node Link Interaction', () => { const inputSlot = slotLocator(comfyPage.page, clipNode.id, 0, true) await expectVisibleAll(outputSlot, inputSlot) - await outputSlot.dragTo(inputSlot) + await outputSlot.dragTo(inputSlot, { force: true }) await comfyPage.nextFrame() expect(await samplerOutput.getLinkCount()).toBe(0) @@ -210,7 +210,7 @@ test.describe('Vue Node Link Interaction', () => { const inputSlot = slotLocator(comfyPage.page, samplerNode.id, 3, true) await expectVisibleAll(outputSlot, inputSlot) - await outputSlot.dragTo(inputSlot) + await outputSlot.dragTo(inputSlot, { force: true }) await comfyPage.nextFrame() expect(await samplerOutput.getLinkCount()).toBe(0) diff --git a/browser_tests/tests/vueNodes/widgets/load/uploadWidgets.spec.ts-snapshots/vue-nodes-upload-widgets-chromium-linux.png b/browser_tests/tests/vueNodes/widgets/load/uploadWidgets.spec.ts-snapshots/vue-nodes-upload-widgets-chromium-linux.png index e64677b92d..aeb1b53bfe 100644 Binary files a/browser_tests/tests/vueNodes/widgets/load/uploadWidgets.spec.ts-snapshots/vue-nodes-upload-widgets-chromium-linux.png and b/browser_tests/tests/vueNodes/widgets/load/uploadWidgets.spec.ts-snapshots/vue-nodes-upload-widgets-chromium-linux.png differ diff --git a/src/renderer/extensions/vueNodes/components/SlotConnectionDot.vue b/src/renderer/extensions/vueNodes/components/SlotConnectionDot.vue index d0ab5c639d..273c6ea503 100644 --- a/src/renderer/extensions/vueNodes/components/SlotConnectionDot.vue +++ b/src/renderer/extensions/vueNodes/components/SlotConnectionDot.vue @@ -20,7 +20,10 @@ defineExpose({