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

17 lines
523 B
JavaScript
Raw Normal View History

describe('Test adapter', () => {
beforeEach(()=>{
cy.visit("http://localhost:7001");
cy.login();
})
const selector = {
add: ".ant-table-title > div > .ant-btn"
};
it("test adapter", () => {
cy.visit("http://localhost:7001");
cy.visit("http://localhost:7001/adapters");
cy.url().should("eq", "http://localhost:7001/adapters");
cy.get(selector.add).click();
cy.url().should("include","http://localhost:7001/adapters/built-in/")
});
})