import '@testing-library/jest-dom'; import $, {VeamsQueryObject} from '../src'; test('each() - test loop', () => { document.body.innerHTML = ` `; const $targetEls: VeamsQueryObject = $('.target-el'); expect($targetEls).toHaveLength(4); $targetEls.each((idx, element) => { expect(element).toHaveAttribute('id', `target-el-${idx + 2}`); }); });