Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
claviska committed Aug 10, 2022
1 parent b3b3956 commit 578a580
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/spinner/spinner.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ describe('<sl-spinner>', () => {
it('should have a role of "status".', () => {
// https://developer.mozilla.org/en-US/docs/Web/Accessibility/ARIA/ARIA_Live_Regions
const base = el.shadowRoot!.querySelector('[part="base"]')!;
expect(base).have.attribute('role', 'status');
expect(base).have.attribute('role', 'progressbar');
});
});
});

0 comments on commit 578a580

Please sign in to comment.