mirror of
				https://github.com/zadam/trilium.git
				synced 2025-11-03 21:19:01 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			18 lines
		
	
	
		
			491 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
		
			491 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
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 );
 | 
						|
		} );
 | 
						|
	} );
 | 
						|
} );
 |