Notes/tests/index.ts

15 lines
417 B
TypeScript
Raw Normal View History

2023-02-06 19:35:50 +01:00
import { Math as MathDll, AutoformatMath as AutoformatMathDll } from '../src';
import Math from '../src/math';
import AutoformatMath from '../src/autoformatmath';
2024-03-20 20:55:51 -03:00
import { expect } from 'chai';
2023-02-06 19:35:50 +01:00
describe( 'CKEditor5 Math DLL', () => {
it( 'exports Math', () => {
expect( MathDll ).to.equal( Math );
} );
it( 'exports AutoformatMath', () => {
expect( AutoformatMathDll ).to.equal( AutoformatMath );
} );
} );