diff --git a/test/cypress/integration/property/propertyDms.spec.js b/test/cypress/integration/property/propertyDms.spec.js index d26754a41..0c7c9be3a 100644 --- a/test/cypress/integration/property/propertyDms.spec.js +++ b/test/cypress/integration/property/propertyDms.spec.js @@ -65,15 +65,15 @@ describe('Property DMS', () => { cy.dataCy(selectors.saveFormBtn).click(); cy.checkNotification('Data saved'); }); - - it('Should download DMS', () => { + + it.skip('Should download DMS', () => { let fileName; cy.get(selectors.firstRowId) - .invoke('text') - .then((label) => { - label = label.trim(); - fileName = `${label}.jpg`; - }); + .invoke('text') + .then((label) => { + label = label.trim(); + fileName = `${label}.jpg`; + }); cy.intercept('GET', /\/api\/dms\/\d+\/downloadFile/).as('download'); cy.get(selectors.firstRowDownloadBtn).click();