diff --git a/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js b/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js index 0bc70447bb..6e02ee1c4d 100644 --- a/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js +++ b/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js @@ -54,9 +54,11 @@ describe('InvoiceInDescriptor', () => { }); }); - it('should download the file properly', () => { + it.only('should download the file properly', () => { cy.visit('/#/invoice-in/1/summary'); - cy.validateDownload(() => cy.selectDescriptorOption(5)); + cy.validateDownload(() => cy.selectDescriptorOption(5), { + type: 'image/jpeg', + }); }); });