feat: Human in the loop section (#12883)

Co-authored-by: Dana <152518854+dana-gill@users.noreply.github.com>
Co-authored-by: Jonathan Bennetts <jonathan.bennetts@gmail.com>
This commit is contained in:
Michael Kret
2025-01-30 16:16:42 +02:00
committed by GitHub
parent 0d8a544975
commit 9590e5d58b
15 changed files with 106 additions and 18 deletions

View File

@@ -571,4 +571,13 @@ describe('Node Creator', () => {
addVectorStoreToolToParent('In-Memory Vector Store', AGENT_NODE_NAME);
});
it('should insert node to canvas with sendAndWait operation selected', () => {
nodeCreatorFeature.getters.canvasAddButton().click();
WorkflowPage.actions.addNodeToCanvas('Manual', false);
nodeCreatorFeature.actions.openNodeCreator();
cy.contains('Human in the loop').click();
nodeCreatorFeature.getters.getCreatorItem('Slack').click();
cy.contains('Send and Wait for Response').should('exist');
});
});