chore(ckeditor5-mermaid): integrate the rest of the files

This commit is contained in:
Elian Doran
2025-05-04 18:19:26 +03:00
parent 89f95f6187
commit 07c2f1805e
31 changed files with 44 additions and 540 deletions

View File

@@ -1,17 +0,0 @@
import { describe, expect, it } from 'vitest';
import { Mermaid as MermaidDll, icons } from '../src/index.js';
import Mermaid from '../src/mermaid.js';
import ckeditor from './../theme/icons/ckeditor.svg';
describe( 'CKEditor5 Mermaid DLL', () => {
it( 'exports Mermaid', () => {
expect( MermaidDll ).to.equal( Mermaid );
} );
describe( 'icons', () => {
it( 'exports the "ckeditor" icon', () => {
expect( icons.ckeditor ).to.equal( ckeditor );
} );
} );
} );