import './step-indicator.element.js'; import './step/step.element.js'; import { assert, fixture, html } from '@open-wc/testing'; import type { USAStepIndicatorElement } from './step-indicator.element.js'; describe('usa-step-indicator', () => { it('should be accessible', async () => { const stepIndicator = await fixture(html` Personal information Household status Supporting documents Signature Review and submit `); return assert.isAccessible(stepIndicator); }); });