diff --git a/test/cypress/integration/worker/workerBusiness.spec.js b/test/cypress/integration/worker/workerBusiness.spec.js index 03142f53ee..256ca9719b 100644 --- a/test/cypress/integration/worker/workerBusiness.spec.js +++ b/test/cypress/integration/worker/workerBusiness.spec.js @@ -25,24 +25,10 @@ describe('WorkerBusiness', () => { }); it('should create a business', () => { - // cy.fillInForm(...Business); cy.fillInForm({ ...Business, }); cy.get(saveBtn).click(); cy.checkNotification('Data created'); }); - - // it('should create an internal', () => { - // cy.fillInForm(internal); - // cy.get(saveBtn).click(); - // cy.checkNotification('Data created'); - // }); - - // it('should create an external', () => { - // cy.get(externalRadio).click(); - // cy.fillInForm(external); - // cy.get(saveBtn).click(); - // cy.checkNotification('Data created'); - // }); });