Skip to content

Commit

Permalink
fix missing icon
Browse files Browse the repository at this point in the history
  • Loading branch information
r3dDoX committed Mar 8, 2024
1 parent 517d4bf commit 36dcbd8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions web-components/src/components/icon/icon.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,11 @@ describe('Icon', () => {
<dss-icon></dss-icon>
`);

element.icon = 'star';
element.icon = 'stars';
element.size = 'large';
await elementUpdated(element);

expect(element.getAttribute('icon')).toBe('star');
expect(element.getAttribute('icon')).toBe('stars');
expect(element.getAttribute('size')).toBe('large');
});
});

0 comments on commit 36dcbd8

Please sign in to comment.