casdoor/web/cypress/e2e/models.cy.js
jakiuncle 7df043fb15
fix: fix cypress error (#1817)
* fix: fix cypress error

* fix: fix cypress error

* fix: fix cypress error

* fix: fix cypress error

* fix: fix cypress error

* fix: fix cypress error

* fix: fix cypress error

* fix: fix cypress error

* fix: fix cypress error
2023-05-09 20:51:07 +08:00

13 lines
435 B
JavaScript

describe('Test models', () => {
beforeEach(()=>{
cy.login();
})
it("test org", () => {
cy.visit("http://localhost:7001");
cy.visit("http://localhost:7001/models");
cy.url().should("eq", "http://localhost:7001/models");
cy.visit("http://localhost:7001/models/built-in/model-built-in");
cy.url().should("eq", "http://localhost:7001/models/built-in/model-built-in");
});
})