mirror of
https://github.com/casdoor/casdoor.git
synced 2025-05-23 10:45:47 +08:00
13 lines
470 B
JavaScript
13 lines
470 B
JavaScript
![]() |
describe('Test providers', () => {
|
||
|
beforeEach(()=>{
|
||
|
cy.login();
|
||
|
})
|
||
|
it("test providers", () => {
|
||
|
cy.visit("http://localhost:7001");
|
||
|
cy.visit("http://localhost:7001/providers");
|
||
|
cy.url().should("eq", "http://localhost:7001/providers");
|
||
|
cy.visit("http://localhost:7001/providers/admin/provider_captcha_default");
|
||
|
cy.url().should("eq", "http://localhost:7001/providers/admin/provider_captcha_default");
|
||
|
});
|
||
|
})
|