mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-03-01 03:04:11 +00:00
The default workflow has 2 CLIP Text Encode nodes, causing strict mode violations. VAE Decode only appears once. Amp-Thread-ID: https://ampcode.com/threads/T-019c177d-06bf-779a-9c72-51a3626e4659
34 lines
1.1 KiB
TypeScript
34 lines
1.1 KiB
TypeScript
import { expect } from '@playwright/test'
|
|
|
|
import { comfyPageFixture as test } from '../../fixtures/ComfyPage'
|
|
|
|
test.describe('Properties panel', () => {
|
|
test('opens and updates title based on selection', async ({ comfyPage }) => {
|
|
await comfyPage.actionbar.propertiesButton.click()
|
|
|
|
const { propertiesPanel } = comfyPage.menu
|
|
|
|
await expect(propertiesPanel.panelTitle).toContainText('Workflow Overview')
|
|
|
|
await comfyPage.selectNodes(['KSampler', 'VAE Decode'])
|
|
|
|
await expect(propertiesPanel.panelTitle).toContainText('3 items selected')
|
|
await expect(propertiesPanel.root.getByText('KSampler')).toHaveCount(1)
|
|
await expect(
|
|
propertiesPanel.root.getByText('VAE Decode')
|
|
).toHaveCount(2)
|
|
|
|
await propertiesPanel.searchBox.fill('seed')
|
|
await expect(propertiesPanel.root.getByText('KSampler')).toHaveCount(1)
|
|
await expect(
|
|
propertiesPanel.root.getByText('VAE Decode')
|
|
).toHaveCount(0)
|
|
|
|
await propertiesPanel.searchBox.fill('')
|
|
await expect(propertiesPanel.root.getByText('KSampler')).toHaveCount(1)
|
|
await expect(
|
|
propertiesPanel.root.getByText('VAE Decode')
|
|
).toHaveCount(2)
|
|
})
|
|
})
|