test for document workspace

This commit is contained in:
Niels Lyngsø
2023-01-12 08:48:47 +01:00
parent e52a91ce10
commit cefffc8178

View File

@@ -0,0 +1,29 @@
import { expect, fixture, html } from '@open-wc/testing';
import { UmbDocumentWorkspaceElement } from './document-workspace.element';
import { defaultA11yConfig } from '@umbraco-cms/test-utils';
describe('UmbDocumentWorkspaceElement', () => {
let element: UmbDocumentWorkspaceElement;
beforeEach(async () => {
element = await fixture(html`<umb-document-workspace></umb-document-workspace>`);
});
it('is defined with its own instance', () => {
expect(element).to.be.instanceOf(UmbDocumentWorkspaceElement);
});
it('passes the a11y audit', async () => {
// TODO: should we use shadowDom here?
await expect(element).to.be.accessible(defaultA11yConfig);
});
describe('properties', () => {
it('has a entityKey property', () => {
expect(element).to.have.property('entityKey');
});
it('has a create property', () => {
expect(element).to.have.property('create');
});
});
});