update test file

This commit is contained in:
Mads Rasmussen
2024-04-29 21:45:15 +02:00
parent 711191486e
commit e15da42bb0

View File

@@ -2,12 +2,14 @@ import { expect, fixture, html } from '@open-wc/testing';
import { UmbPropertyEditorUIContentPickerSourceElement } from './property-editor-ui-content-picker-source.element.js';
import { type UmbTestRunnerWindow, defaultA11yConfig } from '@umbraco-cms/internal/test-utils';
describe('UmbPropertyEditorUIContentPickerSourcePickerElement', () => {
import './property-editor-ui-content-picker-source.element.js';
describe('UmbPropertyEditorUIContentPickerSourceElement', () => {
let element: UmbPropertyEditorUIContentPickerSourceElement;
beforeEach(async () => {
element = await fixture(html`
<umb-property-editor-ui-content-picker-source-picker></umb-property-editor-ui-content-picker-source-picker>
<umb-property-editor-ui-content-picker-source></umb-property-editor-ui-content-picker-source>
`);
});