import { comfyExpect as expect, comfyPageFixture as test } from '../../../../fixtures/ComfyPage' test.describe('Vue Nodes Canvas Pan', () => { test.beforeEach(async ({ comfyPage }) => { await comfyPage.settings.setSetting('Comfy.VueNodes.Enabled', true) await comfyPage.vueNodes.waitForNodes() }) test( '@mobile Can pan with touch', { tag: '@screenshot' }, async ({ comfyPage }) => { await comfyPage.canvasOps.panWithTouch( { x: 64, y: 64 }, { x: 256, y: 256 } ) await expect(comfyPage.canvas).toHaveScreenshot( 'vue-nodes-paned-with-touch.png' ) } ) })