update test to account for removed attrs

This commit is contained in:
Cory LaViska
2022-11-29 11:30:11 -05:00
parent 488088d5f0
commit 22e09a778b

View File

@@ -11,8 +11,6 @@ describe('<sl-skeleton>', () => {
const indicator = el.shadowRoot!.querySelector<HTMLElement>('[part~="indicator"]')!;
expect(base.getAttribute('class')).to.equal(' skeleton ');
expect(base.getAttribute('aria-busy')).to.equal('true');
expect(base.getAttribute('aria-live')).to.equal('polite');
expect(indicator.getAttribute('class')).to.equal('skeleton__indicator');
});