import './button-group.element.js'; import { assert, fixture, html } from '@open-wc/testing'; import type { USAButtonGroupElement } from './button-group.element.js'; describe('usa-button-group', () => { it('should be accessible', async () => { const buttonGroup = await fixture(html` Hello World `); return assert.isAccessible(buttonGroup); }); });