[arvados] updated: 2.7.0-6570-gf16323a0d8

git repository hosting git at public.arvados.org
Wed Apr 24 15:59:16 UTC 2024


Summary of changes:
 services/workbench2/cypress/e2e/multiselect-toolbar.cy.js        | 9 +++++++--
 .../workbench2/src/components/data-explorer/data-explorer.tsx    | 2 +-
 2 files changed, 8 insertions(+), 3 deletions(-)

       via  f16323a0d801bf2920df6f6bb56e858d2f40f3d4 (commit)
      from  bd1838482a20ce4c59f6993f5a87ab4c0c8e2c25 (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 f16323a0d801bf2920df6f6bb56e858d2f40f3d4
Author: Lisa Knox <lisaknox83 at gmail.com>
Date:   Wed Apr 24 11:59:13 2024 -0400

    21224: fixed mstoolbar test Arvados-DCO-1.1-Signed-off-by: Lisa Knox <lisa.knox at curii.com>

diff --git a/services/workbench2/cypress/e2e/multiselect-toolbar.cy.js b/services/workbench2/cypress/e2e/multiselect-toolbar.cy.js
index ce3551bbd1..2283073ded 100644
--- a/services/workbench2/cypress/e2e/multiselect-toolbar.cy.js
+++ b/services/workbench2/cypress/e2e/multiselect-toolbar.cy.js
@@ -25,7 +25,12 @@ describe('Multiselect Toolbar Tests', () => {
 
     it('exists in DOM in neutral state', () => {
         cy.loginAs(activeUser);
-        cy.get('[data-cy=multiselect-toolbar]').should('exist');
-        cy.get('[data-cy=multiselect-button]').should('not.exist');
+        //multiselect toolbar should exist in details card and not in data explorer
+        cy.get('[data-cy=user-details-card]').should('exist').within(() => {
+            cy.get('[data-cy=multiselect-toolbar]').should('exist');
+        });
+        cy.get('[data-cy=title-wrapper]').should('exist').within(() => {
+            cy.get('[data-cy=multiselect-button]').should('not.exist');
+        });
     });
 });
diff --git a/services/workbench2/src/components/data-explorer/data-explorer.tsx b/services/workbench2/src/components/data-explorer/data-explorer.tsx
index 82c4ed721f..d1e55b7c8b 100644
--- a/services/workbench2/src/components/data-explorer/data-explorer.tsx
+++ b/services/workbench2/src/components/data-explorer/data-explorer.tsx
@@ -205,7 +205,7 @@ export const DataExplorer = withStyles(styles)(
                         wrap="nowrap"
                         className={classes.container}
                     >
-                        <div className={classes.titleWrapper} style={currentRoute?.includes('search-results') || !!progressBar ? {marginBottom: '-20px'} : {}}>
+                        <div data-cy="title-wrapper" className={classes.titleWrapper} style={currentRoute?.includes('search-results') || !!progressBar ? {marginBottom: '-20px'} : {}}>
                             {title && (
                                 <Grid
                                     item

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


hooks/post-receive
-- 




More information about the arvados-commits mailing list