mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-22 13:32:54 +08:00
12 lines
237 B
TypeScript
12 lines
237 B
TypeScript
describe('Virtual Scroll', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/virtual-scroll');
|
|
cy.wait(30);
|
|
})
|
|
|
|
it('should open virtual-scroll', () => {
|
|
cy.get('ion-virtual-scroll > *').its('length').should('be.gt', 0);
|
|
});
|
|
});
|
|
|