mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-18 02:21:13 +00:00
fix(editor): Skip disabled nodes when detecting workflow issues (#9610)
This commit is contained in:
committed by
GitHub
parent
87faa58045
commit
245c63f216
@@ -298,10 +298,13 @@ export class WorkflowPage extends BasePage {
|
||||
this.getters.workflowNameInput().should('be.enabled');
|
||||
this.getters.workflowNameInput().clear().type(name).type('{enter}');
|
||||
},
|
||||
activateWorkflow: () => {
|
||||
cy.intercept('PATCH', '/rest/workflows/*').as('activateWorkflow');
|
||||
clickWorkflowActivator: () => {
|
||||
this.getters.activatorSwitch().find('input').first().should('be.enabled');
|
||||
this.getters.activatorSwitch().click();
|
||||
},
|
||||
activateWorkflow: () => {
|
||||
cy.intercept('PATCH', '/rest/workflows/*').as('activateWorkflow');
|
||||
this.actions.clickWorkflowActivator();
|
||||
cy.wait('@activateWorkflow');
|
||||
cy.get('body').type('{esc}');
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user