fix: refs #8581 update invoiceInSerial test to correctly compare totals after filtering #1625

Merged
jorgep merged 1 commits from 8581-fixInvoiceInSerialE2e into dev 2025-03-24 10:31:57 +00:00
1 changed files with 9 additions and 7 deletions

View File

@ -10,14 +10,16 @@ describe('InvoiceInSerial', () => {
});
it('should filter by last days ', () => {
let before;
cy.dataCy('vnTableCell_total')
.invoke('text')
.then((total) => (before = +total));
cy.dataCy('Last days_input').type('{selectall}1{enter}');
cy.dataCy('vnTableCell_total')
.invoke('text')
Review

A veces entraba aquí antes de que se hubiera cambiado el valor.

A veces entraba aquí antes de que se hubiera cambiado el valor.
.then((total) => expect(+total).to.be.lessThan(before));
.then((before) => {
cy.dataCy('Last days_input')
.type('{selectall}1{enter}')
.then(() => {
cy.dataCy('vnTableCell_total')
.invoke('text')
.then((after) => expect(+after).to.be.lessThan(+before));
});
});
});
});