casdoor/web/cypress/e2e/sessions.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

11 lines
285 B
JavaScript

describe('Test sessions', () => {
beforeEach(()=>{
cy.login();
})
it("test sessions", () => {
cy.visit("http://localhost:7001");
cy.visit("http://localhost:7001/sessions");
cy.url().should("eq", "http://localhost:7001/sessions");
});
})