[ARVADOS-WORKBENCH2] updated: 2.1.0-314-ge76af0d8

Git user git at public.arvados.org
Tue Apr 20 19:55:04 UTC 2021


Summary of changes:
 cypress/integration/favorites.spec.js | 18 ++++--------------
 1 file changed, 4 insertions(+), 14 deletions(-)

       via  e76af0d8ff459f1ab692827e674330341b6111ce (commit)
      from  ab8763f927c1f831353d40dfdc66f754e78a6030 (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.


commit e76af0d8ff459f1ab692827e674330341b6111ce
Author: Lucas Di Pentima <lucas at di-pentima.com.ar>
Date:   Tue Apr 20 16:54:36 2021 -0300

    17500: Makes failing test relying on session data leakage pass again.
    
    Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima <lucas at di-pentima.com.ar>

diff --git a/cypress/integration/favorites.spec.js b/cypress/integration/favorites.spec.js
index 9d51cc7f..22514beb 100644
--- a/cypress/integration/favorites.spec.js
+++ b/cypress/integration/favorites.spec.js
@@ -45,15 +45,12 @@ describe('Favorites tests', function () {
     });
 
     it('can copy selected into the collection', () => {
-        cy.loginAs(adminUser);
-
         cy.createCollection(adminUser.token, {
             name: `Test source collection ${Math.floor(Math.random() * 999999)}`,
             manifest_text: ". 37b51d194a7513e45b56f6524f2d51f2+3 0:3:bar\n"
         }).as('testSourceCollection').then(function (testSourceCollection) {
             cy.shareWith(adminUser.token, activeUser.user.uuid, testSourceCollection.uuid, 'can_read');
         });
-
         cy.createCollection(adminUser.token, {
             name: `Test target collection ${Math.floor(Math.random() * 999999)}`,
         }).as('testTargetCollection').then(function (testTargetCollection) {
@@ -63,29 +60,22 @@ describe('Favorites tests', function () {
 
         cy.getAll('@testSourceCollection', '@testTargetCollection')
             .then(function ([testSourceCollection, testTargetCollection]) {
-                cy.get('.layout-pane-primary').contains('Projects').click();
-                cy.get('main').contains(testSourceCollection.name).click();
+                cy.loginAs(activeUser);
+                cy.goToPath(`/collections/${testSourceCollection.uuid}`);
                 cy.get('[data-cy=collection-files-panel]').contains('bar');
                 cy.get('[data-cy=collection-files-panel]').find('input[type=checkbox]').click({ force: true });
                 cy.get('[data-cy=collection-files-panel-options-btn]').click();
                 cy.get('[data-cy=context-menu]')
                     .contains('Copy selected into the collection').click();
-
                 cy.get('[data-cy=projects-tree-favourites-tree-picker]')
                     .find('i')
                     .click();
-
                 cy.get('[data-cy=projects-tree-favourites-tree-picker]')
                     .contains(testTargetCollection.name)
                     .click();
-
                 cy.get('[data-cy=form-submit-btn]').click();
-
-                cy.get('.layout-pane-primary')
-                    .contains('Projects').click();
-
-                cy.get('main').contains(testTargetCollection.name).click();
-
+                cy.get('.layout-pane-primary').contains('Projects').click();
+                cy.goToPath(`/collections/${testTargetCollection.uuid}`);
                 cy.get('[data-cy=collection-files-panel]').contains('bar');
             });
     });

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list