test: remove filter by column
gitea/salix-front/pipeline/pr-dev This commit is unstable Details

This commit is contained in:
Javier Segarra 2025-04-14 11:09:21 +02:00
parent d1440c1083
commit b162dd7672
1 changed files with 0 additions and 13 deletions

View File

@ -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');