diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/input-multi-url-picker/input-multi-url-picker.test.ts b/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/input-multi-url-picker/input-multi-url-picker.test.ts deleted file mode 100644 index c4056cf4f8..0000000000 --- a/src/Umbraco.Web.UI.Client/src/backoffice/shared/components/input-multi-url-picker/input-multi-url-picker.test.ts +++ /dev/null @@ -1,18 +0,0 @@ -import { expect, fixture, html } from '@open-wc/testing'; -import { UmbInputMultiUrlPickerElement } from './input-multi-url-picker.element'; -import { defaultA11yConfig } from '@umbraco-cms/test-utils'; -describe('UmbInputMultiUrlPickerElement', () => { - let element: UmbInputMultiUrlPickerElement; - - beforeEach(async () => { - element = await fixture(html` `); - }); - - it('is defined with its own instance', () => { - expect(element).to.be.instanceOf(UmbInputMultiUrlPickerElement); - }); - - it('passes the a11y audit', async () => { - await expect(element).shadowDom.to.be.accessible(defaultA11yConfig); - }); -});