casdoor/web/cypress/e2e/providers.cy.js

13 lines
470 B
JavaScript
Raw Normal View History

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");
});
})