From f2d7d167715ad8a9ef435203df14439873d8c035 Mon Sep 17 00:00:00 2001 From: Andrea Cordoba Date: Tue, 24 Oct 2023 16:08:51 +0200 Subject: [PATCH] feat(cypress): Adjust success message for session save in Cypress test --- cypress-tests/cypress/e2e/useSession.cy.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress-tests/cypress/e2e/useSession.cy.ts b/cypress-tests/cypress/e2e/useSession.cy.ts index 0c474fc3ae..a51756155e 100644 --- a/cypress-tests/cypress/e2e/useSession.cy.ts +++ b/cypress-tests/cypress/e2e/useSession.cy.ts @@ -144,7 +144,7 @@ describe("Basic public project functionality", () => { .contains("Saving Session", { timeout: TIMEOUTS.long }) .should("be.visible"); cy.get(".modal") - .contains("There are no changes", { timeout: TIMEOUTS.long }) + .contains("Your session has been saved successfully", { timeout: TIMEOUTS.long }) .should("be.visible"); cy.get(".modal .btn-close").should("be.visible").click();