From 012ef7a29af4c9648b463857e5d123fec28b9e41 Mon Sep 17 00:00:00 2001 From: Andrea Cordoba Date: Mon, 9 Dec 2024 11:19:50 +0100 Subject: [PATCH] tests: remove check of project container for anonymous users --- cypress-tests/cypress/e2e/dashboardV2.cy.ts | 1 - 1 file changed, 1 deletion(-) diff --git a/cypress-tests/cypress/e2e/dashboardV2.cy.ts b/cypress-tests/cypress/e2e/dashboardV2.cy.ts index 1bb9d6d7b9..b8ee332032 100644 --- a/cypress-tests/cypress/e2e/dashboardV2.cy.ts +++ b/cypress-tests/cypress/e2e/dashboardV2.cy.ts @@ -72,7 +72,6 @@ describe("Dashboard v2 - Authenticated user", () => { describe("Dashboard v2 - Non-Authenticated user", () => { it("Cannot see projects and groups on Dashboard when logged out", () => { cy.visit("v2"); - cy.getDataCy("projects-container").contains("No 2.0 projects."); cy.getDataCy("view-other-projects-btn").should("be.visible"); cy.getDataCy("groups-container").contains("No 2.0 groups."); cy.getDataCy("view-other-groups-btn").should("be.visible");