This commit is contained in:
Juergen Kunz
2025-06-24 23:15:56 +00:00
parent 71d64fccb8
commit 474385a939
5 changed files with 246 additions and 5 deletions

View File

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