mirror of
https://github.com/shoelace-style/webawesome.git
synced 2026-01-12 04:09:12 +00:00
10 lines
330 B
TypeScript
10 lines
330 B
TypeScript
import { expect, fixture, html } from '@open-wc/testing';
|
|
import type WaMenuLabel from './menu-label.js';
|
|
|
|
describe('<wa-menu-label>', () => {
|
|
it('passes accessibility test', async () => {
|
|
const el = await fixture<WaMenuLabel>(html` <wa-menu-label>Test</wa-menu-label> `);
|
|
await expect(el).to.be.accessible();
|
|
});
|
|
});
|