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