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