mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-23 18:54:03 +08:00
13 lines
466 B
JavaScript
13 lines
466 B
JavaScript
![]() |
describe('Test aplication', () => {
|
||
|
beforeEach(()=>{
|
||
|
cy.login();
|
||
|
})
|
||
|
it("test aplication", () => {
|
||
|
cy.visit("http://localhost:7001");
|
||
|
cy.visit("http://localhost:7001/applications");
|
||
|
cy.url().should("eq", "http://localhost:7001/applications");
|
||
|
cy.visit("http://localhost:7001/applications/built-in/app-built-in");
|
||
|
cy.url().should("eq", "http://localhost:7001/applications/built-in/app-built-in");
|
||
|
});
|
||
|
})
|