[Bug] Fix load audio node (#2927)

Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
Chenlei Hu
2025-03-08 20:17:19 -05:00
committed by GitHub
parent 65573f106b
commit 6e378c68f9
5 changed files with 42 additions and 2 deletions

View File

@@ -134,3 +134,10 @@ test.describe('Load image widget', () => {
await expect(comfyPage.canvas).toHaveScreenshot('load_image_widget.png')
})
})
test.describe('Load audio widget', () => {
test('Can load audio', async ({ comfyPage }) => {
await comfyPage.loadWorkflow('widgets/load_audio_widget')
await expect(comfyPage.canvas).toHaveScreenshot('load_audio_widget.png')
})
})