Skip to content

Commit

Permalink
fix: fix close without connecting confirmation
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgrozav committed May 15, 2023
1 parent 8d3aeb2 commit 7d31cf0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/2-credentials.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ describe('Credentials', () => {
workflowPage.getters.nodeCredentialsSelect().should('contain', NEW_GOOGLE_ACCOUNT_NAME);
});

it('should show multiple credential types in the same dropdown', () => {
it.only('should show multiple credential types in the same dropdown', () => {
workflowPage.actions.visit();
workflowPage.actions.addNodeToCanvas(SCHEDULE_TRIGGER_NODE_NAME);
workflowPage.actions.addNodeToCanvas(GMAIL_NODE_NAME);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -528,7 +528,7 @@ export default mixins(nodeHelpers, externalHooks).extend({
),
},
);
keepEditing = confirmAction === MODAL_CONFIRM;
keepEditing = confirmAction !== MODAL_CONFIRM;
}
if (!keepEditing) {
Expand Down

0 comments on commit 7d31cf0

Please sign in to comment.