mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-04-20 06:20:11 +00:00
## Summary
Harden 98 E2E spec files and 8 fixtures/helpers for deterministic CI
runs by replacing race-prone patterns with retry-safe alternatives.
No source code changes -- only `browser_tests/` is touched.
## Changes
- **E2E spec hardening** (98 spec files, 6 fixtures, 2 helpers):
| Fix class | Sites | Examples |
|-----------|-------|---------:|
| `expect(await ...)` -> `expect.poll()` | ~153 | interaction,
defaultKeybindings, workflows, featureFlags |
| `const x = await loc.count(); expect(x)` -> `toHaveCount()` | ~19 |
menu, linkInteraction, assets, bottomPanelShortcuts |
| `nextFrame()` -> `waitForHidden()` after menu clicks | ~22 |
contextMenu, rightClickMenu, subgraphHelper |
| Redundant `nextFrame()` removed | many | defaultKeybindings, minimap,
builderSaveFlow |
| `expect(async () => { ... }).toPass()` retry blocks | 5 | interaction
(graphdialog dismiss guard) |
| `force:true` removed from `BaseDialog.close()` | 1 | BaseDialog
fixture |
| ContextMenu `waitForHidden` simplified (check-then-act race removed) |
1 | ContextMenu fixture |
| Non-deterministic node order -> proximity-based selection | 1 |
interaction (toggle dom widget) |
| Tight poll timeout (250ms) -> >=2000ms | 2 | templates |
- **Helper improvements**: Exposed locator getters on
`ComfyPage.domWidgets`, `ToastHelper.toastErrors`, and
`WorkflowsSidebarTab.activeWorkflowLabel` so callers can use retrying
assertions (`toHaveCount()`, `toHaveText()`) directly.
- **Flake pattern catalog**: Added section 7 table to
`browser_tests/FLAKE_PREVENTION_RULES.md` documenting 8 pattern classes
for reviewers and future authors.
- **Docs**: Fixed bad examples in `browser_tests/README.md` to use
`expect.poll()`.
- **Breaking**: None
- **Dependencies**: None
## Review Focus
- All fixes follow the rules in
`browser_tests/FLAKE_PREVENTION_RULES.md`
- No behavioral changes to tests -- only timing/retry strategy is
updated
- The `ContextMenu.waitForHidden` simplification removes a
swallowed-error anti-pattern; both locators now use direct `waitFor({
state: 'hidden' })`
---------
Co-authored-by: Amp <amp@ampcode.com>
Co-authored-by: github-actions <github-actions@github.com>
70 lines
2.5 KiB
TypeScript
70 lines
2.5 KiB
TypeScript
import { expect } from '@playwright/test'
|
|
|
|
import { comfyPageFixture as test } from '@e2e/fixtures/ComfyPage'
|
|
import { PropertiesPanelHelper } from '@e2e/tests/propertiesPanel/PropertiesPanelHelper'
|
|
|
|
test.describe('Properties panel - Workflow Overview', () => {
|
|
let panel: PropertiesPanelHelper
|
|
|
|
test.beforeEach(async ({ comfyPage }) => {
|
|
panel = new PropertiesPanelHelper(comfyPage.page)
|
|
await comfyPage.actionbar.propertiesButton.click()
|
|
await expect(panel.root).toBeVisible()
|
|
})
|
|
|
|
test('should show "Workflow Overview" title when nothing is selected', async () => {
|
|
await expect(panel.panelTitle).toContainText('Workflow Overview')
|
|
})
|
|
|
|
test('should show Parameters, Nodes, and Settings tabs', async () => {
|
|
await expect(panel.getTab('Parameters')).toBeVisible()
|
|
await expect(panel.getTab('Nodes')).toBeVisible()
|
|
await expect(panel.getTab('Settings')).toBeVisible()
|
|
})
|
|
|
|
test('should not show Info tab when nothing is selected', async () => {
|
|
await expect(panel.getTab('Info')).not.toBeVisible()
|
|
})
|
|
|
|
test('should switch to Nodes tab and list all workflow nodes', async ({
|
|
comfyPage
|
|
}) => {
|
|
await panel.switchToTab('Nodes')
|
|
await expect.poll(() => comfyPage.nodeOps.getNodeCount()).toBeGreaterThan(0)
|
|
await expect(panel.contentArea.locator('text=KSampler')).toBeVisible()
|
|
})
|
|
|
|
test('should filter nodes by search in Nodes tab', async () => {
|
|
await panel.switchToTab('Nodes')
|
|
await panel.searchWidgets('KSampler')
|
|
await expect(panel.contentArea.getByText('KSampler').first()).toBeVisible()
|
|
})
|
|
|
|
test('should switch to Settings tab and show global settings', async () => {
|
|
await panel.switchToTab('Settings')
|
|
await expect(panel.viewAllSettingsButton).toBeVisible()
|
|
})
|
|
|
|
test('should show "View all settings" button', async () => {
|
|
await panel.switchToTab('Settings')
|
|
await expect(panel.viewAllSettingsButton).toBeVisible()
|
|
})
|
|
|
|
test('should show Nodes section with toggles', async () => {
|
|
await panel.switchToTab('Settings')
|
|
await expect(
|
|
panel.contentArea.getByRole('button', { name: 'NODES' })
|
|
).toBeVisible()
|
|
})
|
|
|
|
test('should show Canvas section with grid settings', async () => {
|
|
await panel.switchToTab('Settings')
|
|
await expect(panel.contentArea.getByText('Canvas')).toBeVisible()
|
|
})
|
|
|
|
test('should show Connection Links section', async () => {
|
|
await panel.switchToTab('Settings')
|
|
await expect(panel.contentArea.getByText('Connection Links')).toBeVisible()
|
|
})
|
|
})
|