#8581 invoiceIn e2e #1452

Merged
jorgep merged 153 commits from 8581-invoiceinE2e into dev 2025-03-20 08:58:01 +00:00
1 changed files with 29 additions and 1 deletions
Showing only changes of commit 502ee6dc7c - Show all commits

View File

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