diff --git a/test/cypress/integration/invoiceIn/invoiceInList.spec.js b/test/cypress/integration/invoiceIn/invoiceInList.spec.js index d03d1e96a..23ab84228 100644 --- a/test/cypress/integration/invoiceIn/invoiceInList.spec.js +++ b/test/cypress/integration/invoiceIn/invoiceInList.spec.js @@ -105,8 +105,8 @@ describe('InvoiceInList', () => { }); it('should filter by supplierRef param', () => { - cy.dataCy('Supplier ref_input').type('1234{enter}'); cy.intercept('GET', /\/api\/InvoiceIns\/\d+\/getTotals$/).as('invoice'); + cy.dataCy('Supplier ref_input').type('1234{enter}'); cy.wait('@invoice').then(() => cy.validateDescriptor({ title: '1234' })); });