#8581 invoiceIn e2e #1452
|
@ -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',
|
||||
},
|
||||
],
|
||||
});
|
||||
});
|
||||
});
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue