From 7ef8a067621baba0eb38d28303812055aa41fb7f Mon Sep 17 00:00:00 2001 From: Lucas Di Pentima Date: Thu, 22 Feb 2024 18:45:11 -0300 Subject: [PATCH] 21461: Fixes collection's upload test. Arvados-DCO-1.1-Signed-off-by: Lucas Di Pentima --- services/workbench2/cypress/e2e/collection.cy.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/services/workbench2/cypress/e2e/collection.cy.js b/services/workbench2/cypress/e2e/collection.cy.js index 32349ab884..f4ffaebf5e 100644 --- a/services/workbench2/cypress/e2e/collection.cy.js +++ b/services/workbench2/cypress/e2e/collection.cy.js @@ -165,8 +165,6 @@ describe("Collection panel tests", function () { cy.get("[data-cy=form-dialog]").should("exist").and("contain", "Collection with the same name already exists"); }); - - it("uses the property editor (from edit dialog) with vocabulary terms", function () { cy.createCollection(adminUser.token, { name: `Test collection ${Math.floor(Math.random() * 999999)}`, @@ -210,8 +208,6 @@ describe("Collection panel tests", function () { }); }); - - it("uses the editor (from details panel) with vocabulary terms", function () { cy.createCollection(adminUser.token, { name: `Test collection ${Math.floor(Math.random() * 999999)}`, @@ -1320,8 +1316,7 @@ describe("Collection panel tests", function () { cy.get("[data-cy=form-submit-btn]").click(); - cy.get("button[aria-label=Remove]").should("exist"); - cy.get("button[aria-label=Remove]").click({ multiple: true, force: true }); + cy.get("button[aria-label=Remove]").should("exist").click({ multiple: true}); cy.get("[data-cy=form-submit-btn]").should("not.exist"); -- 2.30.2