17436: Removed only from cypress test suite
[arvados.git] / cypress / integration / collection.spec.js
index 3813d02e9858cec11cf7131cb44945ffa7284562..3767e6bff26c3e8a08f4d45a95327e32c0eda499 100644 (file)
@@ -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) => {