X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/40ad26356794ff381c4cecb35141417dad0807ea..d1fa1c888be0d956178cc29cd78dbb924a7606c1:/cypress/integration/favorites.spec.js?ds=sidebyside diff --git a/cypress/integration/favorites.spec.js b/cypress/integration/favorites.spec.js index d81ad811..9bc90ebd 100644 --- a/cypress/integration/favorites.spec.js +++ b/cypress/integration/favorites.spec.js @@ -44,7 +44,8 @@ describe('Favorites tests', function () { }); }); - it('can copy selected into the collection', () => { + // Disabled while addressing #18587 + it.skip('can copy selected into the collection', () => { cy.createCollection(adminUser.token, { name: `Test source collection ${Math.floor(Math.random() * 999999)}`, manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n" @@ -135,23 +136,22 @@ describe('Favorites tests', function () { it('can edit project and collections in favorites', () => { cy.createProject({ owningUser: adminUser, - targetUser: activeUser, projectName: 'mySharedWritableProject', canWrite: true, addToFavorites: true }); cy.createCollection(adminUser.token, { - owner_uuid: activeUser.user.uuid, + owner_uuid: adminUser.user.uuid, name: `Test target collection ${Math.floor(Math.random() * 999999)}`, }).as('testTargetCollection').then(function (testTargetCollection) { - cy.addToFavorites(activeUser.token, activeUser.user.uuid, testTargetCollection.uuid); + cy.addToFavorites(adminUser.token, adminUser.user.uuid, testTargetCollection.uuid); }); cy.getAll('@mySharedWritableProject', '@testTargetCollection') .then(function ([mySharedWritableProject, testTargetCollection]) { - cy.loginAs(activeUser); - + cy.loginAs(adminUser); + cy.get('[data-cy=side-panel-tree]').contains('My Favorites').click(); const newProjectName = `New project name ${mySharedWritableProject.name}`; @@ -159,13 +159,8 @@ describe('Favorites tests', function () { const newCollectionName = `New collection name ${testTargetCollection.name}`; const newCollectionDescription = `New collection description ${testTargetCollection.name}`; - cy.editProjectOrCollection('main', mySharedWritableProject.name, newProjectName, newProjectDescription); - cy.editProjectOrCollection('main', testTargetCollection.name, newCollectionName, newCollectionDescription, false); - - cy.get('main').contains(newProjectName).rightclick(); - cy.contains('Remove from favorites').click(); - cy.get('main').contains(newCollectionName).rightclick(); - cy.contains('Remove from favorites').click(); + cy.testEditProjectOrCollection('main', mySharedWritableProject.name, newProjectName, newProjectDescription); + cy.testEditProjectOrCollection('main', testTargetCollection.name, newCollectionName, newCollectionDescription, false); cy.get('[data-cy=side-panel-tree]').contains('Projects').click(); @@ -176,8 +171,8 @@ describe('Favorites tests', function () { cy.get('[data-cy=side-panel-tree]').contains('Public Favorites').click(); - cy.editProjectOrCollection('main', newProjectName, mySharedWritableProject.name, 'newProjectDescription'); - cy.editProjectOrCollection('main', newCollectionName, testTargetCollection.name, 'newCollectionDescription', false); + cy.testEditProjectOrCollection('main', newProjectName, mySharedWritableProject.name, 'newProjectDescription'); + cy.testEditProjectOrCollection('main', newCollectionName, testTargetCollection.name, 'newCollectionDescription', false); }); });