mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-23 10:45:47 +08:00
17 lines
516 B
JavaScript
17 lines
516 B
JavaScript
![]() |
describe('Test webhooks', () => {
|
||
|
beforeEach(()=>{
|
||
|
cy.visit("http://localhost:7001");
|
||
|
cy.login();
|
||
|
})
|
||
|
const selector = {
|
||
|
add: ".ant-table-title > div > .ant-btn"
|
||
|
};
|
||
|
it("test webhooks", () => {
|
||
|
cy.visit("http://localhost:7001");
|
||
|
cy.visit("http://localhost:7001/webhooks");
|
||
|
cy.url().should("eq", "http://localhost:7001/webhooks");
|
||
|
cy.get(selector.add).click();
|
||
|
cy.url().should("include","http://localhost:7001/webhooks/")
|
||
|
});
|
||
|
})
|