import { expect } from '@playwright/test' import { comfyPageFixture as test } from '../fixtures/ComfyPage' import { TestIds } from '../fixtures/selectors' test.describe( 'Mobile Baseline Snapshots', { tag: ['@mobile', '@screenshot'] }, () => { test('@mobile empty canvas', async ({ comfyPage }) => { await comfyPage.settings.setSetting('Comfy.ConfirmClear', false) await comfyPage.command.executeCommand('Comfy.ClearWorkflow') await expect(async () => { expect(await comfyPage.nodeOps.getGraphNodesCount()).toBe(0) }).toPass({ timeout: 5000 }) await comfyPage.nextFrame() await expect(comfyPage.canvas).toHaveScreenshot('mobile-empty-canvas.png') }) test('@mobile default workflow', async ({ comfyPage }) => { await comfyPage.workflow.loadWorkflow('default') await expect(comfyPage.canvas).toHaveScreenshot( 'mobile-default-workflow.png' ) }) test('@mobile settings dialog', async ({ comfyPage }) => { await comfyPage.settingDialog.open() await comfyPage.nextFrame() await expect(comfyPage.settingDialog.root).toHaveScreenshot( 'mobile-settings-dialog.png', { mask: [ comfyPage.settingDialog.root.getByTestId( TestIds.user.currentUserIndicator ) ] } ) }) } )