[TS] Fix widget GET_CONFIG on loading primitive nodes (#3374)

This commit is contained in:
Chenlei Hu
2025-04-09 17:48:28 -04:00
committed by GitHub
parent dc9ea44f3a
commit a500a96c4a
4 changed files with 1474 additions and 13 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -43,4 +43,15 @@ test.describe('Primitive Node', () => {
'static_primitive_connected.png'
)
})
test('Report missing nodes when connect to missing node', async ({
comfyPage
}) => {
await comfyPage.loadWorkflow(
'primitive/primitive_node_connect_missing_node'
)
// Wait for the element with the .comfy-missing-nodes selector to be visible
const missingNodesWarning = comfyPage.page.locator('.comfy-missing-nodes')
await expect(missingNodesWarning).toBeVisible()
})
})