mirror of
https://github.com/zadam/trilium.git
synced 2025-11-11 07:45:51 +01:00
git-subtree-dir: _regroup/ckeditor5-math git-subtree-mainline:034cd58833git-subtree-split:6231df7f0e
15 lines
417 B
TypeScript
15 lines
417 B
TypeScript
import { Math as MathDll, AutoformatMath as AutoformatMathDll } from '../src';
|
|
import Math from '../src/math';
|
|
import AutoformatMath from '../src/autoformatmath';
|
|
import { expect } from 'chai';
|
|
|
|
describe( 'CKEditor5 Math DLL', () => {
|
|
it( 'exports Math', () => {
|
|
expect( MathDll ).to.equal( Math );
|
|
} );
|
|
|
|
it( 'exports AutoformatMath', () => {
|
|
expect( AutoformatMathDll ).to.equal( AutoformatMath );
|
|
} );
|
|
} );
|