diff --git a/test/cypress/integration/monitor/monitorTicket.spec.js b/test/cypress/integration/monitor/monitorTicket.spec.js index 66c16c546..72c6bf936 100644 --- a/test/cypress/integration/monitor/monitorTicket.spec.js +++ b/test/cypress/integration/monitor/monitorTicket.spec.js @@ -18,19 +18,6 @@ describe('Monitor Tickets Table', () => { cy.getRowCol('provinceFk').click({ ctrlKey: true }); cy.get('@windowOpen').should('be.calledWithMatch', /\/ticket\/\d+\/sale/); }); - it('should filter by column headers and update URL params', () => { - cy.intercept('GET', '**/SalesMonitors/salesFilter*').as('filterRequest'); - - cy.dataCy('column-filter-id').find('[data-cy="_input"]').type('13'); - cy.dataCy('column-filter-id').find('.q-icon').click(); - cy.openRightMenu(); - cy.dataCy('column-filter-clientFk').find('[data-cy="_select"]').type('1101'); - cy.intercept('GET', '**/Clients*').as('filterClient'); - cy.wait('@filterClient').then(() => { - cy.clickOption(); - }); - }); - it('should open the descriptorProxy and SummaryPopup', () => { cy.getRowCol('totalProblems');