From e15da42bb072f88b7c3df7637e9dc93ede3c0803 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Mon, 29 Apr 2024 21:45:15 +0200 Subject: [PATCH] update test file --- ....ts => property-editor-ui-content-picker-source.test.ts} | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) rename src/Umbraco.Web.UI.Client/src/packages/property-editors/content-picker/config/source/{property-editor-ui-content-picker-source-picker.test.ts => property-editor-ui-content-picker-source.test.ts} (76%) diff --git a/src/Umbraco.Web.UI.Client/src/packages/property-editors/content-picker/config/source/property-editor-ui-content-picker-source-picker.test.ts b/src/Umbraco.Web.UI.Client/src/packages/property-editors/content-picker/config/source/property-editor-ui-content-picker-source.test.ts similarity index 76% rename from src/Umbraco.Web.UI.Client/src/packages/property-editors/content-picker/config/source/property-editor-ui-content-picker-source-picker.test.ts rename to src/Umbraco.Web.UI.Client/src/packages/property-editors/content-picker/config/source/property-editor-ui-content-picker-source.test.ts index 822047a355..b63cdf5a2a 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/property-editors/content-picker/config/source/property-editor-ui-content-picker-source-picker.test.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/property-editors/content-picker/config/source/property-editor-ui-content-picker-source.test.ts @@ -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` - + `); });