import { expect, fixture, html } from '@open-wc/testing'; describe('', () => { it('should render a component', async () => { const el = await fixture(html` `); expect(el).to.exist; }); it('should pass accessibility tests', async () => { // Arrange const el = await fixture(html`
`); // Assert await expect(el).to.be.accessible(); }); });