fix(editor): Un-skip workflow save test (no-changelog) (#9698)

This commit is contained in:
Milorad FIlipović 2024-06-11 11:12:12 +02:00 committed by GitHub
parent c0e4f69fe6
commit 810991156b
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -37,7 +37,7 @@ describe('Workflow Actions', () => {
WorkflowPage.getters.isWorkflowSaved();
});
it.skip('should not save already saved workflow', () => {
it('should not save already saved workflow', () => {
cy.intercept('PATCH', '/rest/workflows/*').as('saveWorkflow');
WorkflowPage.actions.saveWorkflowOnButtonClick();
WorkflowPage.actions.addNodeToCanvas(MANUAL_TRIGGER_NODE_NAME);