X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/927b67520cb7fafada0fdbb756ae9639a4ac79d8..1844e8f036938eb849f935c6d9b1c2d7180ad3a3:/cypress/integration/collection.spec.js diff --git a/cypress/integration/collection.spec.js b/cypress/integration/collection.spec.js index 3813d02e98..3767e6bff2 100644 --- a/cypress/integration/collection.spec.js +++ b/cypress/integration/collection.spec.js @@ -32,7 +32,7 @@ describe('Collection panel tests', function () { cy.clearLocalStorage(); }); - it.only('allows to download mountain duck config for a collection', () => { + it('allows to download mountain duck config for a collection', () => { cy.createCollection(adminUser.token, { name: `Test collection ${Math.floor(Math.random() * 999999)}`, owner_uuid: activeUser.user.uuid, @@ -46,7 +46,7 @@ describe('Collection panel tests', function () { cy.get('[data-cy=context-menu]').contains('Open as network folder or S3 bucket').click(); cy.get('[data-cy=download-button').click(); - const filename = path.resolve(path.join(downloadsFolder, `${testCollection.name}.duck`)); + const filename = path.join(downloadsFolder, `${testCollection.name}.duck`); cy.readFile(filename, { timeout: 15000 }) .then((body) => {