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