[Test] Skip tests on removed group node menu

This commit is contained in:
filtered
2025-06-25 20:51:04 -07:00
parent 4df20a3055
commit 586f882423
2 changed files with 8 additions and 8 deletions

View File

@@ -17,11 +17,11 @@ test.describe('Group Node', () => {
await libraryTab.open() await libraryTab.open()
}) })
test('Is added to node library sidebar', async ({ comfyPage }) => { test.skip('Is added to node library sidebar', async ({ comfyPage }) => {
expect(await libraryTab.getFolder('group nodes').count()).toBe(1) expect(await libraryTab.getFolder('group nodes').count()).toBe(1)
}) })
test('Can be added to canvas using node library sidebar', async ({ test.skip('Can be added to canvas using node library sidebar', async ({
comfyPage comfyPage
}) => { }) => {
const initialNodeCount = await comfyPage.getGraphNodesCount() const initialNodeCount = await comfyPage.getGraphNodesCount()
@@ -34,7 +34,7 @@ test.describe('Group Node', () => {
expect(await comfyPage.getGraphNodesCount()).toBe(initialNodeCount + 1) expect(await comfyPage.getGraphNodesCount()).toBe(initialNodeCount + 1)
}) })
test('Can be bookmarked and unbookmarked', async ({ comfyPage }) => { test.skip('Can be bookmarked and unbookmarked', async ({ comfyPage }) => {
await libraryTab.getFolder(groupNodeCategory).click() await libraryTab.getFolder(groupNodeCategory).click()
await libraryTab await libraryTab
.getNode(groupNodeName) .getNode(groupNodeName)
@@ -61,7 +61,7 @@ test.describe('Group Node', () => {
).toHaveLength(0) ).toHaveLength(0)
}) })
test('Displays preview on bookmark hover', async ({ comfyPage }) => { test.skip('Displays preview on bookmark hover', async ({ comfyPage }) => {
await libraryTab.getFolder(groupNodeCategory).click() await libraryTab.getFolder(groupNodeCategory).click()
await libraryTab await libraryTab
.getNode(groupNodeName) .getNode(groupNodeName)
@@ -95,7 +95,7 @@ test.describe('Group Node', () => {
) )
}) })
test('Displays tooltip on title hover', async ({ comfyPage }) => { test.skip('Displays tooltip on title hover', async ({ comfyPage }) => {
await comfyPage.setSetting('Comfy.EnableTooltips', true) await comfyPage.setSetting('Comfy.EnableTooltips', true)
await comfyPage.convertAllNodesToGroupNode('Group Node') await comfyPage.convertAllNodesToGroupNode('Group Node')
await comfyPage.page.mouse.move(47, 173) await comfyPage.page.mouse.move(47, 173)
@@ -104,7 +104,7 @@ test.describe('Group Node', () => {
await expect(comfyPage.page.locator('.node-tooltip')).toBeVisible() await expect(comfyPage.page.locator('.node-tooltip')).toBeVisible()
}) })
test('Manage group opens with the correct group selected', async ({ test.skip('Manage group opens with the correct group selected', async ({
comfyPage comfyPage
}) => { }) => {
const makeGroup = async (name, type1, type2) => { const makeGroup = async (name, type1, type2) => {
@@ -165,7 +165,7 @@ test.describe('Group Node', () => {
expect(visibleInputCount).toBe(2) expect(visibleInputCount).toBe(2)
}) })
test('Reconnects inputs after configuration changed via manage dialog save', async ({ test.skip('Reconnects inputs after configuration changed via manage dialog save', async ({
comfyPage comfyPage
}) => { }) => {
const expectSingleNode = async (type: string) => { const expectSingleNode = async (type: string) => {

View File

@@ -24,7 +24,7 @@ test.describe('Canvas Right Click Menu', () => {
await expect(comfyPage.canvas).toHaveScreenshot('add-group-group-added.png') await expect(comfyPage.canvas).toHaveScreenshot('add-group-group-added.png')
}) })
test('Can convert to group node', async ({ comfyPage }) => { test.skip('Can convert to group node', async ({ comfyPage }) => {
await comfyPage.select2Nodes() await comfyPage.select2Nodes()
await expect(comfyPage.canvas).toHaveScreenshot('selected-2-nodes.png') await expect(comfyPage.canvas).toHaveScreenshot('selected-2-nodes.png')
await comfyPage.rightClickCanvas() await comfyPage.rightClickCanvas()