import { expect, fixture, html } from '@open-wc/testing'; import sinon from 'sinon'; import type SlButton from './button'; describe('', () => { describe('when provided no parameters', () => { it('passes accessibility test', async () => { const el = await fixture(html` Button Label `); await expect(el).to.be.accessible(); }); it('default values are set correctly', async () => { const el = await fixture(html` Button Label `); expect(el.variant).to.equal('default'); expect(el.size).to.equal('medium'); expect(el.disabled).to.equal(false); expect(el.caret).to.equal(false); expect(el.loading).to.equal(false); expect(el.outline).to.equal(false); expect(el.pill).to.equal(false); expect(el.circle).to.equal(false); }); it('should render as a