import '@lion/checkbox/lion-checkbox.js'; import { localizeTearDown } from '@lion/localize/test-helpers.js'; import { expect, fixture, html } from '@open-wc/testing'; import '../lion-checkbox-group.js'; beforeEach(() => { localizeTearDown(); }); describe('', () => { it('is accessible', async () => { const el = await fixture(html` `); await expect(el).to.be.accessible(); }); it('is accessible when pre-selected', async () => { const el = await fixture(html` `); await expect(el).to.be.accessible(); }); it('is accessible when disabled', async () => { const el = await fixture(html` `); await expect(el).to.be.accessible(); }); });