@@ -17,11 +17,11 @@ test.describe('Group Node', () => {
17
17
await libraryTab . open ( )
18
18
} )
19
19
20
- test ( 'Is added to node library sidebar' , async ( { comfyPage } ) => {
20
+ test . skip ( 'Is added to node library sidebar' , async ( { comfyPage } ) => {
21
21
expect ( await libraryTab . getFolder ( 'group nodes' ) . count ( ) ) . toBe ( 1 )
22
22
} )
23
23
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 ( {
25
25
comfyPage
26
26
} ) => {
27
27
const initialNodeCount = await comfyPage . getGraphNodesCount ( )
@@ -34,7 +34,7 @@ test.describe('Group Node', () => {
34
34
expect ( await comfyPage . getGraphNodesCount ( ) ) . toBe ( initialNodeCount + 1 )
35
35
} )
36
36
37
- test ( 'Can be bookmarked and unbookmarked' , async ( { comfyPage } ) => {
37
+ test . skip ( 'Can be bookmarked and unbookmarked' , async ( { comfyPage } ) => {
38
38
await libraryTab . getFolder ( groupNodeCategory ) . click ( )
39
39
await libraryTab
40
40
. getNode ( groupNodeName )
@@ -61,7 +61,7 @@ test.describe('Group Node', () => {
61
61
) . toHaveLength ( 0 )
62
62
} )
63
63
64
- test ( 'Displays preview on bookmark hover' , async ( { comfyPage } ) => {
64
+ test . skip ( 'Displays preview on bookmark hover' , async ( { comfyPage } ) => {
65
65
await libraryTab . getFolder ( groupNodeCategory ) . click ( )
66
66
await libraryTab
67
67
. getNode ( groupNodeName )
@@ -95,7 +95,7 @@ test.describe('Group Node', () => {
95
95
)
96
96
} )
97
97
98
- test ( 'Displays tooltip on title hover' , async ( { comfyPage } ) => {
98
+ test . skip ( 'Displays tooltip on title hover' , async ( { comfyPage } ) => {
99
99
await comfyPage . setSetting ( 'Comfy.EnableTooltips' , true )
100
100
await comfyPage . convertAllNodesToGroupNode ( 'Group Node' )
101
101
await comfyPage . page . mouse . move ( 47 , 173 )
@@ -104,7 +104,7 @@ test.describe('Group Node', () => {
104
104
await expect ( comfyPage . page . locator ( '.node-tooltip' ) ) . toBeVisible ( )
105
105
} )
106
106
107
- test ( 'Manage group opens with the correct group selected' , async ( {
107
+ test . skip ( 'Manage group opens with the correct group selected' , async ( {
108
108
comfyPage
109
109
} ) => {
110
110
const makeGroup = async ( name , type1 , type2 ) => {
@@ -165,7 +165,7 @@ test.describe('Group Node', () => {
165
165
expect ( visibleInputCount ) . toBe ( 2 )
166
166
} )
167
167
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 ( {
169
169
comfyPage
170
170
} ) => {
171
171
const expectSingleNode = async ( type : string ) => {
0 commit comments