From bc2b5976d974aec6641a64511c36236b70ed4d72 Mon Sep 17 00:00:00 2001 From: jorgep Date: Wed, 26 Feb 2025 13:18:22 +0100 Subject: [PATCH] refactor: refs #8484 remove unnecessary intercepts and waits in ticket and zone tests --- test/cypress/integration/ticket/ticketDescriptor.spec.js | 2 -- test/cypress/integration/zone/zoneBasicData.spec.js | 8 +------- 2 files changed, 1 insertion(+), 9 deletions(-) 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");