From cbc907a54bbf5730ce24b25c2442242beaf41caf Mon Sep 17 00:00:00 2001 From: carlossa Date: Thu, 6 Mar 2025 13:46:57 +0100 Subject: [PATCH] fix: refs #8583 wBusiness --- .../integration/worker/workerBusiness.spec.js | 14 -------------- 1 file changed, 14 deletions(-) diff --git a/test/cypress/integration/worker/workerBusiness.spec.js b/test/cypress/integration/worker/workerBusiness.spec.js index 03142f53e..256ca9719 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'); - // }); });