From f4d1a95dbb97ebfc612ea1d2892ec7dacb5fb0bc Mon Sep 17 00:00:00 2001 From: Daniel Egger Date: Fri, 3 Nov 2023 11:13:48 +0100 Subject: [PATCH] test: fix cypress test due to added trainer --- cypress/e2e/dashboard/dashboardSupervisor.cy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/dashboard/dashboardSupervisor.cy.js b/cypress/e2e/dashboard/dashboardSupervisor.cy.js index fb9e5f80..4186c542 100644 --- a/cypress/e2e/dashboard/dashboardSupervisor.cy.js +++ b/cypress/e2e/dashboard/dashboardSupervisor.cy.js @@ -38,7 +38,7 @@ describe("dashboardSupervisor.cy.js", () => { describe("overall summary box", () => { it("contains correct numbers (members, experts etc.)", () => { getDashboardStatistics("participant.count").should("have.text", "4"); - getDashboardStatistics("expert.count").should("have.text", "1"); + getDashboardStatistics("expert.count").should("have.text", "2"); getDashboardStatistics("session.count").should("have.text", "2"); }); });