This commit is contained in:
Cory LaViska
2023-12-13 12:04:39 -05:00
parent f5f4f9ae43
commit dd483c0a04

View File

@@ -31,7 +31,7 @@ describe('<sl-spinner>', () => {
it('should have flex:none to prevent flex re-sizing', async () => {
const spinner = await fixture<SlSpinner>(html` <sl-spinner></sl-spinner> `);
// 0 0 auto is a comiled value for `none`
// 0 0 auto is a compiled value for `none`
expect(getComputedStyle(spinner).flex).to.equal('0 0 auto');
});
});