diff --git a/test/cypress/integration/ticket/ticketDescriptor.spec.js b/test/cypress/integration/ticket/ticketDescriptor.spec.js index cd9f288f5..3fc2842d3 100644 --- a/test/cypress/integration/ticket/ticketDescriptor.spec.js +++ b/test/cypress/integration/ticket/ticketDescriptor.spec.js @@ -30,8 +30,6 @@ describe('Ticket descriptor', () => { it('should set the weight of the ticket', () => { cy.visit('/#/ticket/10/summary'); - cy.intercept('GET', /\/api\/Tickets\/\d/).as('ticket'); - cy.wait('@ticket'); cy.openActionsDescriptor(); cy.contains(listItem, setWeightOpt).click(); cy.intercept('POST', /\/api\/Tickets\/\d+\/setWeight/).as('weight'); diff --git a/test/cypress/integration/zone/zoneBasicData.spec.js b/test/cypress/integration/zone/zoneBasicData.spec.js index 70ded3f79..6db39b072 100644 --- a/test/cypress/integration/zone/zoneBasicData.spec.js +++ b/test/cypress/integration/zone/zoneBasicData.spec.js @@ -9,13 +9,7 @@ describe('ZoneBasicData', () => { }); it('should throw an error if the name is empty', () => { - cy.intercept('GET', /\/api\/Zones\/4./).as('zone'); - - cy.wait('@zone').then(() => { - cy.get('[data-cy="zone-basic-data-name"] input').type( - '{selectall}{backspace}', - ); - }); + cy.get('[data-cy="zone-basic-data-name"] input').type('{selectall}{backspace}'); cy.get(saveBtn).click(); cy.checkNotification("can't be blank");