mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-15 01:03:03 +08:00
11 lines
293 B
JavaScript
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");
|
|
});
|
|
});
|