From df89c6fff4a7cbed86daddd6cbdafb512b7112e3 Mon Sep 17 00:00:00 2001 From: Elias Meire Date: Thu, 6 Feb 2025 11:38:39 +0100 Subject: [PATCH] test: Fix flaky code node switching test (#13090) --- cypress/e2e/6-code-node.cy.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/cypress/e2e/6-code-node.cy.ts b/cypress/e2e/6-code-node.cy.ts index 709b6c2c91..4ecda7d56d 100644 --- a/cypress/e2e/6-code-node.cy.ts +++ b/cypress/e2e/6-code-node.cy.ts @@ -54,9 +54,6 @@ describe('Code node', () => { WorkflowPage.actions.openNode('Code'); ndv.actions.clickFloatingNode('Code1'); getEditor().should('have.text', "console.log('code node 2')"); - getEditor().type('{selectall}').type("console.log('code node 2 edited')"); - // wait for debounce - cy.wait(200); ndv.actions.clickFloatingNode('Code'); getEditor().should('have.text', "console.log('code node 1')");