mirror of
				https://github.com/zadam/trilium.git
				synced 2025-10-30 19:19:03 +01:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
		
			433 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
		
			433 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { Math as MathDll, AutoformatMath as AutoformatMathDll } from '../src';
 | |
| import Math from '../src/math';
 | |
| import AutoformatMath from '../src/autoformatmath';
 | |
| import { describe, it, expect } from 'vitest';
 | |
| 
 | |
| describe( 'CKEditor5 Math DLL', () => {
 | |
| 	it( 'exports Math', () => {
 | |
| 		expect( MathDll ).to.equal( Math );
 | |
| 	} );
 | |
| 
 | |
| 	it( 'exports AutoformatMath', () => {
 | |
| 		expect( AutoformatMathDll ).to.equal( AutoformatMath );
 | |
| 	} );
 | |
| } );
 | 
