From 53cf25aaeb63d4a10290299e49407f38fa49215d Mon Sep 17 00:00:00 2001 From: Arek Burdach Date: Sat, 10 Jul 2021 01:18:56 +0200 Subject: [PATCH] Process -> Scenario labels rename - cypress tests fixes --- ui/client/cypress/integration/processes.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/client/cypress/integration/processes.ts b/ui/client/cypress/integration/processes.ts index 8b7ef7a485e..23236791a9b 100644 --- a/ui/client/cypress/integration/processes.ts +++ b/ui/client/cypress/integration/processes.ts @@ -21,7 +21,7 @@ describe("Processes list", () => { }) it("should allow creating new process", function() { - cy.contains(/^create new process$/i).should("be.visible").click() + cy.contains(/^create new scenario$/i).should("be.visible").click() cy.get("#newProcessId").type(this.processName) cy.contains(/^create$/i).should("be.enabled").click() cy.url().should("contain", `visualization\/${this.processName}`)