mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-23 02:35:49 +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
12 lines
330 B
JavaScript
12 lines
330 B
JavaScript
describe('Test resource', () => {
|
|
beforeEach(()=>{
|
|
cy.visit("http://localhost:7001");
|
|
cy.login();
|
|
})
|
|
it("test resource", () => {
|
|
cy.visit("http://localhost:7001");
|
|
cy.visit("http://localhost:7001/resources");
|
|
cy.url().should("eq", "http://localhost:7001/resources");
|
|
});
|
|
})
|