feat(dees-input-list): enhance drag-and-drop reordering for dees-input-list and migrate tests to chromium runner

This commit is contained in:
2026-01-04 10:16:50 +00:00
parent 2a928886b9
commit 67a24ddf26
27 changed files with 337 additions and 51 deletions

View File

@@ -0,0 +1,9 @@
import { expect, tap } from '@git.zone/tstest/tapbundle';
import { DeesInputWysiwyg } from '../ts_web/elements/00group-input/dees-input-wysiwyg/dees-input-wysiwyg.js';
tap.test('should create wysiwyg editor', async () => {
const editor = new DeesInputWysiwyg();
expect(editor).toBeInstanceOf(DeesInputWysiwyg);
});
export default tap.start();