mirror of
https://github.com/TriliumNext/Notes.git
synced 2025-07-29 02:52:27 +08:00

git-subtree-dir: _regroup/ckeditor5-math git-subtree-mainline: 034cd58833a2c9c7ba49f6217dc5aeff274e0174 git-subtree-split: 6231df7f0e9df7f4d6982b103c02400d4f0b8937
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 );
|
|
} );
|
|
} );
|