@@ -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 ) => {
0 commit comments