mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-07 08:30:06 +00:00
Backport of #6755 to `core/1.32` Automatically created by backport workflow. ┆Issue is synchronized with this [Notion page](https://www.notion.so/PR-6848-backport-core-1-32-feat-LOD-setting-for-LG-and-Vue-2b46d73d3650813d8105d5df3e3685e1) by [Unito](https://www.unito.io) Co-authored-by: Simula_r <18093452+simula-r@users.noreply.github.com>
50 lines
1.7 KiB
TypeScript
50 lines
1.7 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.setSetting('LiteGraph.Canvas.MinFontSizeForLOD', 8)
|
|
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 comboboxesInNodes = vueNodesContainer.getByRole('combobox')
|
|
|
|
await expect(textboxesInNodes.first()).toBeVisible()
|
|
await expect(comboboxesInNodes.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(comboboxesInNodes.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(comboboxesInNodes.first()).toBeVisible()
|
|
})
|
|
})
|