mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix(editor): Ensure no running node when execution finished (#15299)
This commit is contained in:
@@ -290,6 +290,13 @@ describe('NDV', () => {
|
||||
workflowPage.actions.openNode('Switch1');
|
||||
ndv.actions.execute();
|
||||
|
||||
ndv.getters.parameterExpressionPreview('output').should('include.text', '1');
|
||||
ndv.getters.parameterExpressionPreview('output').should('have.text', '1');
|
||||
ndv.getters.inlineExpressionEditorInput().click();
|
||||
ndv.getters.inlineExpressionEditorOutput().should('have.text', '1');
|
||||
ndv.actions.expressionSelectNextItem();
|
||||
ndv.getters.inlineExpressionEditorOutput().should('have.text', '3');
|
||||
ndv.actions.expressionSelectNextItem();
|
||||
ndv.getters.inlineExpressionEditorOutput().should('have.text', '1');
|
||||
ndv.getters.inlineExpressionEditorItemNextButton().should('be.disabled');
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user