From 1cf7c68a5627072ccfb4de25d506dfae414c5264 Mon Sep 17 00:00:00 2001 From: jorgep Date: Mon, 10 Mar 2025 16:19:56 +0100 Subject: [PATCH] refactor: refs #8581 simplify file download validation in invoiceInDescriptor test --- .../cypress/integration/invoiceIn/invoiceInDescriptor.spec.js | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js b/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js index c7cf8907e..18320f880 100644 --- a/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js +++ b/test/cypress/integration/invoiceIn/invoiceInDescriptor.spec.js @@ -56,9 +56,7 @@ describe('InvoiceInDescriptor', () => { it('should download the file properly', () => { cy.visit('/#/invoice-in/1/summary'); - cy.validateDownload(() => cy.selectDescriptorOption(5), { - type: 'image/jpeg', - }); + cy.validateDownload(() => cy.selectDescriptorOption(5)); }); });