UNPKG

@finastra/menu

Version:

Menu Web Component

10 lines 357 B
import { html, fixture, expect, elementUpdated } from '@open-wc/testing'; import '../src/menu.js'; describe('Menu', () => { it('loads accessibly', async () => { const el = await fixture(html `<fds-menu></fds-menu>`); await elementUpdated(el); await expect(el).to.be.accessible(); }); }); //# sourceMappingURL=menu.test.js.map