mirror of
https://github.com/casdoor/casdoor.git
synced 2025-06-09 17:01:42 +08:00

* feat: add new line * feat: Test whether the page can be accessed * feat: Change the e2e order * feat: add Test Retries * feat: change yarn.lock * feat: add new line
14 lines
455 B
JavaScript
14 lines
455 B
JavaScript
describe('Test User', () => {
|
|
beforeEach(()=>{
|
|
cy.visit("http://localhost:7001");
|
|
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");
|
|
});
|
|
})
|