diff --git a/cypress/integration/view_routing.js b/cypress/integration/view_routing.js index 72fb6836ec..5942d4f005 100644 --- a/cypress/integration/view_routing.js +++ b/cypress/integration/view_routing.js @@ -224,8 +224,8 @@ context("View", () => { }); }); - it("Route to Settings Workspace", () => { - cy.visit("/app/settings"); - cy.get(".title-text").should("contain", "Settings"); + it("Route to Website Workspace", () => { + cy.visit("/app/website"); + cy.get(".title-text").should("contain", "Website"); }); }); diff --git a/cypress/integration/workspace.js b/cypress/integration/workspace.js index 1499c8772e..4079877c9c 100644 --- a/cypress/integration/workspace.js +++ b/cypress/integration/workspace.js @@ -7,8 +7,8 @@ context("Workspace 2.0", () => { it("Navigate to page from sidebar", () => { cy.visit("/app/build"); cy.get(".codex-editor__redactor .ce-block"); - cy.get('.sidebar-item-container[item-name="Settings"]').first().click(); - cy.location("pathname").should("eq", "/app/settings"); + cy.get('.sidebar-item-container[item-name="Website"]').first().click(); + cy.location("pathname").should("eq", "/app/website"); }); it("Create Private Page", () => {