From a69f504c2f75e1f2fe0b1fa7cd0d07b6114f83b7 Mon Sep 17 00:00:00 2001 From: Juergen Kunz Date: Fri, 19 Dec 2025 12:37:54 +0000 Subject: [PATCH] fix(tests): update test imports to new dees-input-wysiwyg paths --- changelog.md | 6 ++++++ test/test.wysiwyg-registry.both.ts | 10 +++++----- ts_web/00_commitinfo_data.ts | 2 +- 3 files changed, 12 insertions(+), 6 deletions(-) diff --git a/changelog.md b/changelog.md index 599cde4..a111a73 100644 --- a/changelog.md +++ b/changelog.md @@ -1,5 +1,11 @@ # Changelog +## 2025-12-19 - 3.3.3 - fix(tests) +update test imports to new dees-input-wysiwyg paths + +- Updated imports in test/test.wysiwyg-registry.both.ts to point to ts_web/elements/00group-input/dees-input-wysiwyg/* +- Aligns test references with relocated WYSIWYG block handlers and block registration module; no behavior changes to implementation + ## 2025-12-19 - 3.3.2 - fix(build) update build config, bump dependencies, and adjust test import paths after element reorganization diff --git a/test/test.wysiwyg-registry.both.ts b/test/test.wysiwyg-registry.both.ts index 0ff57b6..fb6a708 100644 --- a/test/test.wysiwyg-registry.both.ts +++ b/test/test.wysiwyg-registry.both.ts @@ -1,12 +1,12 @@ import { tap, expect, webhelpers } from '@git.zone/tstest/tapbundle'; -import { BlockRegistry } from '../ts_web/elements/wysiwyg/blocks/block.registry.js'; -import { DividerBlockHandler } from '../ts_web/elements/wysiwyg/blocks/content/divider.block.js'; -import { ParagraphBlockHandler } from '../ts_web/elements/wysiwyg/blocks/text/paragraph.block.js'; -import { HeadingBlockHandler } from '../ts_web/elements/wysiwyg/blocks/text/heading.block.js'; +import { BlockRegistry } from '../ts_web/elements/00group-input/dees-input-wysiwyg/blocks/block.registry.js'; +import { DividerBlockHandler } from '../ts_web/elements/00group-input/dees-input-wysiwyg/blocks/content/divider.block.js'; +import { ParagraphBlockHandler } from '../ts_web/elements/00group-input/dees-input-wysiwyg/blocks/text/paragraph.block.js'; +import { HeadingBlockHandler } from '../ts_web/elements/00group-input/dees-input-wysiwyg/blocks/text/heading.block.js'; // Import block registration to ensure handlers are registered -import '../ts_web/elements/wysiwyg/wysiwyg.blockregistration.js'; +import '../ts_web/elements/00group-input/dees-input-wysiwyg/wysiwyg.blockregistration.js'; tap.test('BlockRegistry should register and retrieve handlers', async () => { // Test divider handler diff --git a/ts_web/00_commitinfo_data.ts b/ts_web/00_commitinfo_data.ts index 7164735..3eedfc8 100644 --- a/ts_web/00_commitinfo_data.ts +++ b/ts_web/00_commitinfo_data.ts @@ -3,6 +3,6 @@ */ export const commitinfo = { name: '@design.estate/dees-catalog', - version: '3.3.2', + version: '3.3.3', description: 'A comprehensive library that provides dynamic web components for building sophisticated and modern web applications using JavaScript and TypeScript.' }