diff --git a/browser_tests/nodeDisplay.spec.ts b/browser_tests/nodeDisplay.spec.ts index f5220d4e0..bbbf98ae5 100644 --- a/browser_tests/nodeDisplay.spec.ts +++ b/browser_tests/nodeDisplay.spec.ts @@ -28,5 +28,8 @@ test.describe('Optional input', () => { await comfyPage.loadWorkflow('only_optional_inputs') expect(await comfyPage.getGraphNodesCount()).toBe(1) expect(comfyPage.page.locator('.comfy-missing-nodes')).not.toBeVisible() + + // If the node's multiline text widget is visible, then it was loaded successfully + expect(comfyPage.page.locator('.comfy-multiline-input')).toHaveCount(1) }) })