Skip to content

Commit 586f882

Browse files
committed
[Test] Skip tests on removed group node menu
1 parent 4df20a3 commit 586f882

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

browser_tests/tests/groupNode.spec.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@ test.describe('Group Node', () => {
1717
await libraryTab.open()
1818
})
1919

20-
test('Is added to node library sidebar', async ({ comfyPage }) => {
20+
test.skip('Is added to node library sidebar', async ({ comfyPage }) => {
2121
expect(await libraryTab.getFolder('group nodes').count()).toBe(1)
2222
})
2323

24-
test('Can be added to canvas using node library sidebar', async ({
24+
test.skip('Can be added to canvas using node library sidebar', async ({
2525
comfyPage
2626
}) => {
2727
const initialNodeCount = await comfyPage.getGraphNodesCount()
@@ -34,7 +34,7 @@ test.describe('Group Node', () => {
3434
expect(await comfyPage.getGraphNodesCount()).toBe(initialNodeCount + 1)
3535
})
3636

37-
test('Can be bookmarked and unbookmarked', async ({ comfyPage }) => {
37+
test.skip('Can be bookmarked and unbookmarked', async ({ comfyPage }) => {
3838
await libraryTab.getFolder(groupNodeCategory).click()
3939
await libraryTab
4040
.getNode(groupNodeName)
@@ -61,7 +61,7 @@ test.describe('Group Node', () => {
6161
).toHaveLength(0)
6262
})
6363

64-
test('Displays preview on bookmark hover', async ({ comfyPage }) => {
64+
test.skip('Displays preview on bookmark hover', async ({ comfyPage }) => {
6565
await libraryTab.getFolder(groupNodeCategory).click()
6666
await libraryTab
6767
.getNode(groupNodeName)
@@ -95,7 +95,7 @@ test.describe('Group Node', () => {
9595
)
9696
})
9797

98-
test('Displays tooltip on title hover', async ({ comfyPage }) => {
98+
test.skip('Displays tooltip on title hover', async ({ comfyPage }) => {
9999
await comfyPage.setSetting('Comfy.EnableTooltips', true)
100100
await comfyPage.convertAllNodesToGroupNode('Group Node')
101101
await comfyPage.page.mouse.move(47, 173)
@@ -104,7 +104,7 @@ test.describe('Group Node', () => {
104104
await expect(comfyPage.page.locator('.node-tooltip')).toBeVisible()
105105
})
106106

107-
test('Manage group opens with the correct group selected', async ({
107+
test.skip('Manage group opens with the correct group selected', async ({
108108
comfyPage
109109
}) => {
110110
const makeGroup = async (name, type1, type2) => {
@@ -165,7 +165,7 @@ test.describe('Group Node', () => {
165165
expect(visibleInputCount).toBe(2)
166166
})
167167

168-
test('Reconnects inputs after configuration changed via manage dialog save', async ({
168+
test.skip('Reconnects inputs after configuration changed via manage dialog save', async ({
169169
comfyPage
170170
}) => {
171171
const expectSingleNode = async (type: string) => {

browser_tests/tests/rightClickMenu.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ test.describe('Canvas Right Click Menu', () => {
2424
await expect(comfyPage.canvas).toHaveScreenshot('add-group-group-added.png')
2525
})
2626

27-
test('Can convert to group node', async ({ comfyPage }) => {
27+
test.skip('Can convert to group node', async ({ comfyPage }) => {
2828
await comfyPage.select2Nodes()
2929
await expect(comfyPage.canvas).toHaveScreenshot('selected-2-nodes.png')
3030
await comfyPage.rightClickCanvas()

0 commit comments

Comments
 (0)