This commit is contained in:
Cory LaViska
2022-11-30 15:43:43 -05:00
parent e10651565f
commit 01f8ce6b03

View File

@@ -22,7 +22,7 @@ describe('<sl-checkbox>', () => {
expect(el.defaultChecked).to.be.false;
});
it('should have title if title attribute isset', async () => {
it('should have title if title attribute is set', async () => {
const el = await fixture<SlCheckbox>(html` <sl-checkbox title="Test"></sl-checkbox> `);
const input = el.shadowRoot!.querySelector('input')!;