mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-04 07:00:23 +00:00
## Summary Refactored Vue node browser tests by organizing them into behavioral categories, better reflecting the nature of browser tests as behind user-action/behavior specifications. - **What**: Reorganized Playwright browser tests into logical behavioral folders (`interactions/`, `nodeStates/`) - **Structure**: Created subdirectories for canvas interactions, link interactions, node interactions, and node states ## Review Focus Test file path changes and associated snapshot relocations ensure all browser tests continue to run correctly in the new structure. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-5823-refactor-reorganize-Vue-node-browser-tests-into-subfolder-based-on-behaviors-and-states-27b6d73d365081aaa6f9e3a388165258) by [Unito](https://www.unito.io)
49 lines
1.6 KiB
TypeScript
49 lines
1.6 KiB
TypeScript
import { expect } from '@playwright/test'
|
|
|
|
import { comfyPageFixture as test } from '../../../fixtures/ComfyPage'
|
|
|
|
test.beforeEach(async ({ comfyPage }) => {
|
|
await comfyPage.setSetting('Comfy.UseNewMenu', 'Disabled')
|
|
})
|
|
|
|
test.describe('Vue Nodes - LOD', () => {
|
|
test.beforeEach(async ({ comfyPage }) => {
|
|
await comfyPage.setSetting('Comfy.VueNodes.Enabled', true)
|
|
await comfyPage.setup()
|
|
await comfyPage.loadWorkflow('default')
|
|
})
|
|
|
|
test('should toggle LOD based on zoom threshold', async ({ comfyPage }) => {
|
|
await comfyPage.vueNodes.waitForNodes()
|
|
|
|
const initialNodeCount = await comfyPage.vueNodes.getNodeCount()
|
|
expect(initialNodeCount).toBeGreaterThan(0)
|
|
|
|
await expect(comfyPage.canvas).toHaveScreenshot('vue-nodes-default.png')
|
|
|
|
const vueNodesContainer = comfyPage.vueNodes.nodes
|
|
const textboxesInNodes = vueNodesContainer.getByRole('textbox')
|
|
const buttonsInNodes = vueNodesContainer.getByRole('button')
|
|
|
|
await expect(textboxesInNodes.first()).toBeVisible()
|
|
await expect(buttonsInNodes.first()).toBeVisible()
|
|
|
|
await comfyPage.zoom(120, 10)
|
|
await comfyPage.nextFrame()
|
|
|
|
await expect(comfyPage.canvas).toHaveScreenshot('vue-nodes-lod-active.png')
|
|
|
|
await expect(textboxesInNodes.first()).toBeHidden()
|
|
await expect(buttonsInNodes.first()).toBeHidden()
|
|
|
|
await comfyPage.zoom(-120, 10)
|
|
await comfyPage.nextFrame()
|
|
|
|
await expect(comfyPage.canvas).toHaveScreenshot(
|
|
'vue-nodes-lod-inactive.png'
|
|
)
|
|
await expect(textboxesInNodes.first()).toBeVisible()
|
|
await expect(buttonsInNodes.first()).toBeVisible()
|
|
})
|
|
})
|