From 319c23dd98ea17351fc9d974d4221c5ebcba942c Mon Sep 17 00:00:00 2001 From: jorgep Date: Tue, 11 Mar 2025 14:42:43 +0100 Subject: [PATCH] fix: refs #8581 update validateDownload command to support jpeg/image type --- test/cypress/support/commands.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/cypress/support/commands.js b/test/cypress/support/commands.js index 137b61c4f..70ab9225e 100755 --- a/test/cypress/support/commands.js +++ b/test/cypress/support/commands.js @@ -545,7 +545,7 @@ Cypress.Commands.add('validateCheckbox', (selector, expectedVal = 'true') => { Cypress.Commands.add('validateDownload', (trigger, opts = {}) => { const { url = /api\/dms\/\d+\/downloadFile\?access_token=.+/, - type = 'text/plain', + type = 'text/plain, jpeg/image', alias = 'download', } = opts; cy.intercept('GET', url).as(alias);