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