Skip to content

Commit

Permalink
test: remove remaining usage of Polymer specific API
Browse files Browse the repository at this point in the history
  • Loading branch information
web-padawan committed Nov 14, 2024
1 parent f459ecb commit e7a33fb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/avatar-group/test/avatar-group.test.js
Original file line number Diff line number Diff line change
Expand Up @@ -224,7 +224,7 @@ describe('avatar-group', () => {
});

it('should always show at least two avatars', async () => {
group.set('items', group.items.slice(0, 2));
group.items = group.items.slice(0, 2);
group.style.width = '50px';
await onceResized(group);
const items = group.querySelectorAll('vaadin-avatar:not([hidden])');
Expand Down

0 comments on commit e7a33fb

Please sign in to comment.