diff --git a/test/cypress/integration/invoiceIn/invoiceInSerial.spec.js b/test/cypress/integration/invoiceIn/invoiceInSerial.spec.js index faad22f12..3750f8f06 100644 --- a/test/cypress/integration/invoiceIn/invoiceInSerial.spec.js +++ b/test/cypress/integration/invoiceIn/invoiceInSerial.spec.js @@ -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') - .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)); + }); + }); }); });