test(ckeditor5-math): license key not found

This commit is contained in:
Elian Doran 2025-05-09 22:16:12 +03:00
parent c3d028b495
commit c9834e58bb
No known key found for this signature in database
4 changed files with 7 additions and 3 deletions

View File

@ -15,6 +15,7 @@ describe( 'AutoMath - integration', () => {
return ClassicEditor
.create( editorElement, {
plugins: [ Mathematics, AutoMath, Typing, Paragraph ],
licenseKey: "GPL",
math: {
engine: ( equation, element, display ) => {
if ( display ) {

View File

@ -13,6 +13,7 @@ describe( 'Lazy load', () => {
return ClassicEditor
.create( editorElement, {
...config,
licenseKey: "GPL",
plugins: [ MathUI ]
} )
.then( newEditor => {

View File

@ -15,7 +15,8 @@ describe( 'Math', () => {
return ClassicEditor
.create( editorElement, {
plugins: [ Mathematics ]
plugins: [ Mathematics ],
licenseKey: "GPL"
} )
.then( newEditor => {
editor = newEditor;

View File

@ -33,8 +33,9 @@ describe( 'MathUI', () => {
} else {
element.innerHTML = '\\(' + equation + '\\)';
}
}
}
},
},
licenseKey: "GPL"
} )
.then( newEditor => {
editor = newEditor;