Files
ionic-framework/packages/vue/test/base/tests/e2e/specs/select.cy.js
2023-01-30 15:58:03 -05:00

11 lines
293 B
JavaScript

describe("Components: Select", () => {
beforeEach(() => {
cy.visit("http://localhost:8080/components/select");
});
it("should open a popover overlay interface", () => {
cy.get("#select-popover").click();
cy.get("ion-popover").should("exist").should("be.visible");
});
});