refactor(core): Stop reporting to Sentry unrecognized node errors (no-changelog) (#7728)

https://n8nio.sentry.io/issues/4636584213
This commit is contained in:
Iván Ovejero
2023-11-17 10:25:10 +01:00
committed by GitHub
parent b4ebb1a28d
commit 0408299c7d
2 changed files with 13 additions and 5 deletions

View File

@@ -390,20 +390,20 @@ describe('Canvas Node Manipulation and Navigation', () => {
);
WorkflowPage.actions.executeWorkflow();
cy.contains('Node not found').should('be.visible');
cy.contains('Unrecognized node type').should('be.visible');
WorkflowPage.getters
.canvasNodeByName(`${unknownNodeName} 1`)
.find('[data-test-id=delete-node-button]')
.click({ force: true });
WorkflowPage.getters
WorkflowPage.getters
.canvasNodeByName(`${unknownNodeName} 2`)
.find('[data-test-id=delete-node-button]')
.click({ force: true });
WorkflowPage.actions.executeWorkflow();
cy.contains('Node not found').should('not.exist');
cy.contains('Unrecognized node type').should('not.exist');
});
});