mirror of
https://github.com/ionic-team/ionic-framework.git
synced 2025-08-17 18:54:11 +08:00
16 lines
337 B
JavaScript
16 lines
337 B
JavaScript
/// <reference types="Cypress" />
|
|
/* eslint-disable */
|
|
|
|
describe('Connectors', () => {
|
|
beforeEach(() => {
|
|
cy.visit('/');
|
|
});
|
|
|
|
it('.each() - iterate over an array of elements', () => {
|
|
// https://on.cypress.io/each
|
|
cy.get('ion-item').each(($el, index, $list) => {
|
|
console.log($el, index, $list);
|
|
});
|
|
});
|
|
});
|