mirror of
https://github.com/zadam/trilium.git
synced 2025-11-02 11:26:15 +01:00
chore(ckeditor5-footnotes): initialize empty plugin
This commit is contained in:
17
packages/ckeditor5-footnotes/tests/index.ts
Normal file
17
packages/ckeditor5-footnotes/tests/index.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import { describe, expect, it } from 'vitest';
|
||||
import { Footnotes as FootnotesDll, icons } from '../src/index.js';
|
||||
import Footnotes from '../src/footnotes.js';
|
||||
|
||||
import ckeditor from './../theme/icons/ckeditor.svg';
|
||||
|
||||
describe( 'CKEditor5 Footnotes DLL', () => {
|
||||
it( 'exports Footnotes', () => {
|
||||
expect( FootnotesDll ).to.equal( Footnotes );
|
||||
} );
|
||||
|
||||
describe( 'icons', () => {
|
||||
it( 'exports the "ckeditor" icon', () => {
|
||||
expect( icons.ckeditor ).to.equal( ckeditor );
|
||||
} );
|
||||
} );
|
||||
} );
|
||||
Reference in New Issue
Block a user