|
@@ -10,7 +10,6 @@ import Editor from 'ckeditor5/core/editor/editor.js';
|
|
|
import Plugin from 'ckeditor5/core/plugin.js';
|
|
import Plugin from 'ckeditor5/core/plugin.js';
|
|
|
import Config from 'ckeditor5/utils/config.js';
|
|
import Config from 'ckeditor5/utils/config.js';
|
|
|
import PluginCollection from 'ckeditor5/core/plugincollection.js';
|
|
import PluginCollection from 'ckeditor5/core/plugincollection.js';
|
|
|
-import FocusTracker from 'ckeditor5/utils/focustracker.js';
|
|
|
|
|
|
|
|
|
|
class PluginA extends Plugin {
|
|
class PluginA extends Plugin {
|
|
|
constructor( editor ) {
|
|
constructor( editor ) {
|
|
@@ -52,7 +51,6 @@ describe( 'Editor', () => {
|
|
|
|
|
|
|
|
expect( editor.config ).to.be.an.instanceof( Config );
|
|
expect( editor.config ).to.be.an.instanceof( Config );
|
|
|
expect( editor.commands ).to.be.an.instanceof( Map );
|
|
expect( editor.commands ).to.be.an.instanceof( Map );
|
|
|
- expect( editor.focusTracker ).to.instanceOf( FocusTracker );
|
|
|
|
|
|
|
|
|
|
expect( editor.plugins ).to.be.an.instanceof( PluginCollection );
|
|
expect( editor.plugins ).to.be.an.instanceof( PluginCollection );
|
|
|
expect( getPlugins( editor ) ).to.be.empty;
|
|
expect( getPlugins( editor ) ).to.be.empty;
|