test: Update e2e test that fails with the new log view (no-changelog) (#15217)

This commit is contained in:
Suguru Inoue
2025-05-08 13:20:59 +02:00
committed by GitHub
parent 392e91480a
commit ce7ab2f456

View File

@@ -454,11 +454,11 @@ describe('Langchain Integration', () => {
cy.createFixtureWorkflow('Test_workflow_chat_partial_execution.json'); cy.createFixtureWorkflow('Test_workflow_chat_partial_execution.json');
workflowPage.actions.zoomToFit(); workflowPage.actions.zoomToFit();
getManualChatModal().should('not.exist'); getManualChatModal().find('main').should('not.exist');
openNode('Node 1'); openNode('Node 1');
ndv.actions.execute(); ndv.actions.execute();
getManualChatModal().should('exist'); getManualChatModal().find('main').should('exist');
sendManualChatMessage('Test'); sendManualChatMessage('Test');
getManualChatMessages().should('contain', 'this_my_field_1'); getManualChatMessages().should('contain', 'this_my_field_1');