remove unused test
This commit is contained in:
@@ -1,22 +0,0 @@
|
||||
import { UmbEditableWorkspaceElement } from './editable-workspace.element.js';
|
||||
import { expect, fixture, html } from '@open-wc/testing';
|
||||
import { type UmbTestRunnerWindow, defaultA11yConfig } from '@umbraco-cms/internal/test-utils';
|
||||
|
||||
describe('UmbEditableWorkspaceElement', () => {
|
||||
let element: UmbEditableWorkspaceElement;
|
||||
|
||||
beforeEach(async () => {
|
||||
element = await fixture(html`<umb-editable-workspace></umb-editable-workspace>`);
|
||||
});
|
||||
|
||||
it('is defined with its own instance', () => {
|
||||
expect(element).to.be.instanceOf(UmbEditableWorkspaceElement);
|
||||
});
|
||||
|
||||
if ((window as UmbTestRunnerWindow).__UMBRACO_TEST_RUN_A11Y_TEST) {
|
||||
it('passes the a11y audit', async () => {
|
||||
// TODO: should we use shadowDom here?
|
||||
await expect(element).to.be.accessible(defaultA11yConfig);
|
||||
});
|
||||
}
|
||||
});
|
||||
Reference in New Issue
Block a user