shoelace/src/components/option/option.test.ts

44 wiersze
1.4 KiB
TypeScript
Czysty Zwykły widok Historia

2022-12-20 18:36:53 +00:00
import { expect, fixture, html, waitUntil, aTimeout } from '@open-wc/testing';
import sinon from 'sinon';
import type SlOption from './option';
2022-12-17 16:27:30 +00:00
describe('<sl-option>', () => {
2022-12-20 18:36:53 +00:00
it('passes accessibility test', async () => {
const el = await fixture<SlOption>(html`
<sl-select label="Select one">
<sl-option>Option 1</sl-option>
<sl-option>Option 2</sl-option>
<sl-option>Option 3</sl-option>
<sl-option disabled>Disabled</sl-option>
</sl-select>
`);
await expect(el).to.be.accessible();
});
it('default properties', async () => {
const el = await fixture<SlOption>(html` <sl-option>Test</sl-option> `);
expect(el.value).to.equal('');
expect(el.disabled).to.be.false;
expect(el.getAttribute('aria-disabled')).to.equal('false');
});
it('changes aria attributes', async () => {
const el = await fixture<SlOption>(html` <sl-option>Test</sl-option> `);
el.disabled = true;
await aTimeout(100);
expect(el.getAttribute('aria-disabled')).to.equal('true');
});
it('emit sl-label-change when the label changes', async () => {
const el = await fixture<SlOption>(html` <sl-option>Test</sl-option> `);
2022-12-17 16:27:30 +00:00
2022-12-20 18:36:53 +00:00
const labelChangeHandler = sinon.spy();
el.textContent = 'New Text';
el.addEventListener('sl-label-change', labelChangeHandler);
await waitUntil(() => labelChangeHandler.calledOnce);
expect(labelChangeHandler).to.have.been.calledOnce;
2022-12-17 16:27:30 +00:00
});
});