Skip to content

Commit

Permalink
Merge pull request #305 from brmodeloweb/tests/remove-unnecessary-vis…
Browse files Browse the repository at this point in the history
…it-commands
  • Loading branch information
wlsf82 authored Dec 14, 2021
2 parents 71b20aa + cf9dafb commit c0aeee7
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 3 deletions.
1 change: 0 additions & 1 deletion cypress/integration/api/model.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);
});
Expand Down
1 change: 0 additions & 1 deletion cypress/integration/model.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down
1 change: 0 additions & 1 deletion cypress/integration/models.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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];

Expand Down

0 comments on commit c0aeee7

Please sign in to comment.