diff --git a/cypress/integration/api/model.spec.js b/cypress/integration/api/model.spec.js index 503c64ec..09337a51 100644 --- a/cypress/integration/api/model.spec.js +++ b/cypress/integration/api/model.spec.js @@ -4,7 +4,6 @@ describe("Models - Creation via API call", () => { beforeEach(() => { cy.intercept("GET", "/models?userId=*").as("getUserModels"); cy.loginViaApi(); - cy.visit("/#!/main"); cy.wait("@getUserModels").then((userModels) => { cy.cleanUpUserModels(userModels); }); diff --git a/cypress/integration/model.spec.js b/cypress/integration/model.spec.js index c2899c56..fdd41d4b 100644 --- a/cypress/integration/model.spec.js +++ b/cypress/integration/model.spec.js @@ -4,7 +4,6 @@ describe("Model", () => { beforeEach(() => { cy.intercept("GET", "/models?userId=*").as("getUserModels"); cy.loginViaApi(); - cy.visit("/#!/main"); cy.wait("@getUserModels").then((userModels) => { cy.cleanUpUserModels(userModels); cy.reload(); diff --git a/cypress/integration/models.spec.js b/cypress/integration/models.spec.js index 693db216..9548dca7 100644 --- a/cypress/integration/models.spec.js +++ b/cypress/integration/models.spec.js @@ -6,7 +6,6 @@ describe("Models view", () => { beforeEach(() => { cy.intercept("GET", "/models?userId=*").as("getUserModels"); cy.loginViaApi(); - cy.visit("/#!/main"); cy.wait("@getUserModels").then((userModels) => { const userId = userModels.request.url.match(/userId=([^&]*)/)[1];