File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
browser_tests/tests/vueNodes/groups Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -8,13 +8,15 @@ const CREATE_GROUP_HOTKEY = 'Control+g'
8
8
test . describe ( 'Vue Node Groups' , ( ) => {
9
9
test . beforeEach ( async ( { comfyPage } ) => {
10
10
await comfyPage . setSetting ( 'Comfy.VueNodes.Enabled' , true )
11
+ await comfyPage . setSetting ( 'Comfy.Minimap.ShowGroups' , true )
11
12
await comfyPage . vueNodes . waitForNodes ( )
12
13
} )
13
14
14
15
test ( 'should allow creating groups with hotkey' , async ( { comfyPage } ) => {
15
16
await comfyPage . page . getByText ( 'Load Checkpoint' ) . click ( )
16
17
await comfyPage . page . getByText ( 'KSampler' ) . click ( { modifiers : [ 'Control' ] } )
17
18
await comfyPage . page . keyboard . press ( CREATE_GROUP_HOTKEY )
19
+ await comfyPage . nextFrame ( )
18
20
await expect ( comfyPage . canvas ) . toHaveScreenshot (
19
21
'vue-groups-create-group.png'
20
22
)
You can’t perform that action at this time.
0 commit comments