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