added unit test
This commit is contained in:
@@ -0,0 +1,19 @@
|
|||||||
|
import { expect, fixture, html } from '@open-wc/testing';
|
||||||
|
import { defaultA11yConfig } from '../../../core/helpers/chai';
|
||||||
|
import { UmbDashboardTelemetryElement } from './dashboard-telemetry.element';
|
||||||
|
|
||||||
|
describe('UmbDashboardTelemetryElement', () => {
|
||||||
|
let element: UmbDashboardTelemetryElement;
|
||||||
|
|
||||||
|
beforeEach(async () => {
|
||||||
|
element = await fixture(html`<umb-dashboard-telemetry></umb-dashboard-telemetry>`);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('is defined with its own instance', () => {
|
||||||
|
expect(element).to.be.instanceOf(UmbDashboardTelemetryElement);
|
||||||
|
});
|
||||||
|
|
||||||
|
it('passes the a11y audit', async () => {
|
||||||
|
await expect(element).to.be.accessible(defaultA11yConfig);
|
||||||
|
});
|
||||||
|
});
|
||||||
Reference in New Issue
Block a user