File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed
Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,9 @@ test.describe('Node Interaction', () => {
4040 } )
4141 } )
4242
43- test ( 'Can move link' , async ( { comfyPage } ) => {
43+ // Chromium 2x cannot move link.
44+ // See https://github.com/Comfy-Org/ComfyUI_frontend/actions/runs/10876381315/job/30176211513
45+ test . skip ( 'Can move link' , async ( { comfyPage } ) => {
4446 await comfyPage . dragAndDrop (
4547 comfyPage . clipTextEncodeNode1InputSlot ,
4648 comfyPage . emptySpace
@@ -53,7 +55,13 @@ test.describe('Node Interaction', () => {
5355 await expect ( comfyPage . canvas ) . toHaveScreenshot ( 'moved-link.png' )
5456 } )
5557
56- test ( 'Can copy link by shift-drag existing link' , async ( { comfyPage } ) => {
58+ // Copy link is not working on CI at all
59+ // Chromium 2x recognize it as dragging canvas.
60+ // Chromium triggers search box after link release. The link is indeed copied.
61+ // See https://github.com/Comfy-Org/ComfyUI_frontend/actions/runs/10876381315/job/30176211513
62+ test . skip ( 'Can copy link by shift-drag existing link' , async ( {
63+ comfyPage
64+ } ) => {
5765 await comfyPage . dragAndDrop (
5866 comfyPage . clipTextEncodeNode1InputSlot ,
5967 comfyPage . emptySpace
You can’t perform that action at this time.
0 commit comments