From 61f5c58ab3152947752f83e9af324cd3f0cc8f25 Mon Sep 17 00:00:00 2001 From: Lisa Knox Date: Fri, 12 Jan 2024 10:49:59 -0500 Subject: [PATCH] 21317: tweak collection spec Arvados-DCO-1.1-Signed-off-by: Lisa Knox --- services/workbench2/cypress/integration/collection.spec.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/services/workbench2/cypress/integration/collection.spec.js b/services/workbench2/cypress/integration/collection.spec.js index 0af2e02572..2e409e58c9 100644 --- a/services/workbench2/cypress/integration/collection.spec.js +++ b/services/workbench2/cypress/integration/collection.spec.js @@ -32,7 +32,7 @@ describe("Collection panel tests", function () { cy.clearLocalStorage(); }); - it('shows the appropriate buttons in the toolbar', () => { + it.only('shows the appropriate buttons in the toolbar', () => { const msButtonTooltips = [ 'API Details', @@ -63,6 +63,8 @@ describe("Collection panel tests", function () { cy.get("[data-cy=side-panel-tree]").contains("Home Projects").click(); cy.waitForDom() cy.get('[data-cy=data-table-row]').contains(name).should('exist').parent().parent().parent().parent().click() + const buttons = cy.get('[data-cy=multiselect-button]') + console.log(buttons) cy.get('[data-cy=multiselect-button]').should('have.length', msButtonTooltips.length + 1) for (let i = 0; i < msButtonTooltips.length; i++) { cy.get('[data-cy=multiselect-button]').eq(i).trigger('mouseover'); -- 2.30.2