Update litegraph 0.8.87 (#2625)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Chenlei Hu
2025-02-18 20:25:17 -05:00
committed by GitHub
parent 9de8450deb
commit cbf5dff633
6 changed files with 75 additions and 5 deletions

View File

@@ -53,4 +53,11 @@ test.describe('Optional input', () => {
await comfyPage.loadWorkflow('simple_slider')
await expect(comfyPage.canvas).toHaveScreenshot('simple_slider.png')
})
test('unknown converted widget', async ({ comfyPage }) => {
await comfyPage.setSetting('Comfy.Workflow.ShowMissingNodesWarning', false)
await comfyPage.loadWorkflow('missing_nodes_converted_widget')
await expect(comfyPage.canvas).toHaveScreenshot(
'missing_nodes_converted_widget.png'
)
})
})