mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-23 10:45:47 +08:00
12 lines
328 B
JavaScript
12 lines
328 B
JavaScript
![]() |
describe('Test sessions', () => {
|
||
|
beforeEach(()=>{
|
||
|
cy.visit("http://localhost:7001");
|
||
|
cy.login();
|
||
|
})
|
||
|
it("test sessions", () => {
|
||
|
cy.visit("http://localhost:7001");
|
||
|
cy.visit("http://localhost:7001/sessions");
|
||
|
cy.url().should("eq", "http://localhost:7001/sessions");
|
||
|
});
|
||
|
})
|