|
|
@@ -9,20 +9,20 @@ import CKEditorError from '@ckeditor/ckeditor5-utils/src/ckeditorerror';
|
|
|
|
|
|
let editor, pendingActions;
|
|
|
|
|
|
-describe( 'PendingActions', () => {
|
|
|
- beforeEach( () => {
|
|
|
- return VirtaulTestEditor.create( {
|
|
|
- plugins: [ PendingActions ],
|
|
|
- } ).then( newEditor => {
|
|
|
- editor = newEditor;
|
|
|
- pendingActions = editor.plugins.get( PendingActions );
|
|
|
- } );
|
|
|
+beforeEach( () => {
|
|
|
+ return VirtaulTestEditor.create( {
|
|
|
+ plugins: [ PendingActions ],
|
|
|
+ } ).then( newEditor => {
|
|
|
+ editor = newEditor;
|
|
|
+ pendingActions = editor.plugins.get( PendingActions );
|
|
|
} );
|
|
|
+} );
|
|
|
|
|
|
- afterEach( () => {
|
|
|
- return editor.destroy();
|
|
|
- } );
|
|
|
+afterEach( () => {
|
|
|
+ return editor.destroy();
|
|
|
+} );
|
|
|
|
|
|
+describe( 'PendingActions', () => {
|
|
|
it( 'should define static pluginName property', () => {
|
|
|
expect( PendingActions ).to.have.property( 'pluginName', 'PendingActions' );
|
|
|
} );
|