@finastra/stepper
Version:
Stepper Web Component
13 lines • 575 B
JavaScript
import { elementUpdated, expect, fixture, html } from '@open-wc/testing';
import '../src/horizontal-stepper';
describe('Stepper', () => {
it('loads accessibly', async () => {
const elH = await fixture(html `<fds-horizontal-stepper></fds-horizontal-stepper>`);
const elV = await fixture(html `<fds-vertical-stepper></fds-vertical-stepper>`);
await elementUpdated(elH);
await expect(elH).to.be.accessible();
await elementUpdated(elV);
await expect(elV).to.be.accessible();
});
});
//# sourceMappingURL=stepper.test.js.map