From ce7ab2f45622add658020983ff0d17b53a6bdd4d Mon Sep 17 00:00:00 2001 From: Suguru Inoue Date: Thu, 8 May 2025 13:20:59 +0200 Subject: [PATCH] test: Update e2e test that fails with the new log view (no-changelog) (#15217) --- cypress/e2e/30-langchain.cy.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cypress/e2e/30-langchain.cy.ts b/cypress/e2e/30-langchain.cy.ts index c9a72d014c..f6109e5af8 100644 --- a/cypress/e2e/30-langchain.cy.ts +++ b/cypress/e2e/30-langchain.cy.ts @@ -454,11 +454,11 @@ describe('Langchain Integration', () => { cy.createFixtureWorkflow('Test_workflow_chat_partial_execution.json'); workflowPage.actions.zoomToFit(); - getManualChatModal().should('not.exist'); + getManualChatModal().find('main').should('not.exist'); openNode('Node 1'); ndv.actions.execute(); - getManualChatModal().should('exist'); + getManualChatModal().find('main').should('exist'); sendManualChatMessage('Test'); getManualChatMessages().should('contain', 'this_my_field_1');