From 502ee6dc7ca122e249ed4b99083aaddaf29f4740 Mon Sep 17 00:00:00 2001 From: jorgep Date: Mon, 24 Feb 2025 14:10:21 +0100 Subject: [PATCH] test: refs #8581 skip 'From param' filter test and add 'To param' and 'daysAgo param' filter tests --- .../invoiceIn/invoiceInList.spec.js | 30 ++++++++++++++++++- 1 file changed, 29 insertions(+), 1 deletion(-) diff --git a/test/cypress/integration/invoiceIn/invoiceInList.spec.js b/test/cypress/integration/invoiceIn/invoiceInList.spec.js index d9972f0f1..89457d0c7 100644 --- a/test/cypress/integration/invoiceIn/invoiceInList.spec.js +++ b/test/cypress/integration/invoiceIn/invoiceInList.spec.js @@ -54,7 +54,7 @@ describe('InvoiceInList', () => { }); describe('right-panel', () => { - it('should filter by From param', () => { + it.skip('should filter by From param', () => { cy.dataCy('From_inputDate').type('31/12/2000{enter}'); cy.validateVnTableRows({ cols: [ @@ -67,5 +67,33 @@ describe('InvoiceInList', () => { ], }); }); + + it.skip('should filter by To param', () => { + cy.dataCy('To_inputDate').type('31/12/2000{enter}'); + cy.validateVnTableRows({ + cols: [ + { + name: 'issued', + type: 'date', + val: '31/12/2000', + operation: 'before', + }, + ], + }); + }); + + it('should filter by daysAgo param', () => { + cy.dataCy('Days ago_input').type('4{enter}'); + cy.validateVnTableRows({ + cols: [ + { + name: 'issued', + type: 'date', + val: '31/12/2000', + operation: 'after', + }, + ], + }); + }); }); });