mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-23 02:35:49 +08:00

* 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
11 lines
285 B
JavaScript
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");
|
|
});
|
|
})
|