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