Disable flaky test (#55)

This commit is contained in:
Chenlei Hu
2024-06-25 21:29:41 -04:00
committed by GitHub
parent 23a4ee8314
commit 577aea9dfb

View File

@@ -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');
});