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
13 lines
412 B
JavaScript
13 lines
412 B
JavaScript
describe('Test User', () => {
|
|
beforeEach(()=>{
|
|
cy.login();
|
|
})
|
|
it("test user", () => {
|
|
cy.visit("http://localhost:7001");
|
|
cy.visit("http://localhost:7001/users");
|
|
cy.url().should("eq", "http://localhost:7001/users");
|
|
cy.visit("http://localhost:7001/users/built-in/admin");
|
|
cy.url().should("eq", "http://localhost:7001/users/built-in/admin");
|
|
});
|
|
})
|