mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-23 05:58:26 +08:00
test(angular): add support for multi-version testing (#25665)
This commit is contained in:
11
angular/test/base/e2e/src/virtual-scroll.spec.ts
Normal file
11
angular/test/base/e2e/src/virtual-scroll.spec.ts
Normal file
@ -0,0 +1,11 @@
|
||||
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);
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user