From 577aea9dfb680a14b3ae4fa626a85098c3207030 Mon Sep 17 00:00:00 2001 From: Chenlei Hu Date: Tue, 25 Jun 2024 21:29:41 -0400 Subject: [PATCH] Disable flaky test (#55) --- browser_tests/interaction.spec.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/browser_tests/interaction.spec.ts b/browser_tests/interaction.spec.ts index f01b870de..6cf6a4397 100644 --- a/browser_tests/interaction.spec.ts +++ b/browser_tests/interaction.spec.ts @@ -48,7 +48,8 @@ test.describe('Node Interaction', () => { await expect(comfyPage.canvas).toHaveScreenshot('selected-node2.png'); }); - test('Can drag node', async ({ comfyPage }) => { + // Flaky. See https://github.com/comfyanonymous/ComfyUI/issues/3866 + test.skip('Can drag node', async ({ comfyPage }) => { await comfyPage.dragNode2(); await expect(comfyPage.canvas).toHaveScreenshot('dragged-node1.png'); });