From b162dd76726f83e1e64ee34436e02d5e5759fa8b Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Mon, 14 Apr 2025 11:09:21 +0200 Subject: [PATCH] test: remove filter by column --- .../integration/monitor/monitorTicket.spec.js | 13 ------------- 1 file changed, 13 deletions(-) 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');