2025-05-04 22:50:18 +03:00
|
|
|
import { Math as MathDll, AutoformatMath as AutoformatMathDll } from '../src';
|
|
|
|
|
import Math from '../src/math';
|
|
|
|
|
import AutoformatMath from '../src/autoformatmath';
|
|
|
|
|
import { expect } from 'chai';
|
2025-05-09 23:56:09 +03:00
|
|
|
import { describe, it } from 'vitest';
|
2025-05-04 19:53:24 +03:00
|
|
|
|
|
|
|
|
describe( 'CKEditor5 Math DLL', () => {
|
|
|
|
|
it( 'exports Math', () => {
|
|
|
|
|
expect( MathDll ).to.equal( Math );
|
|
|
|
|
} );
|
|
|
|
|
|
2025-05-04 22:50:18 +03:00
|
|
|
it( 'exports AutoformatMath', () => {
|
|
|
|
|
expect( AutoformatMathDll ).to.equal( AutoformatMath );
|
2025-05-04 19:53:24 +03:00
|
|
|
} );
|
|
|
|
|
} );
|