mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-30 03:32:26 +08:00
14 lines
386 B
JavaScript
14 lines
386 B
JavaScript
![]() |
import { Math as MathDll, AutoformatMath as AutoformatMathDll } from '../src';
|
||
|
import Math from '../src/math';
|
||
|
import AutoformatMath from '../src/autoformatmath';
|
||
|
|
||
|
describe( 'CKEditor5 Math DLL', () => {
|
||
|
it( 'exports Math', () => {
|
||
|
expect( MathDll ).to.equal( Math );
|
||
|
} );
|
||
|
|
||
|
it( 'exports AutoformatMath', () => {
|
||
|
expect( AutoformatMathDll ).to.equal( AutoformatMath );
|
||
|
} );
|
||
|
} );
|