|
@@ -6,13 +6,12 @@
|
|
|
'use strict';
|
|
'use strict';
|
|
|
|
|
|
|
|
import EditorUIView from '/ckeditor5/ui/editorui/editoruiview.js';
|
|
import EditorUIView from '/ckeditor5/ui/editorui/editoruiview.js';
|
|
|
-import Model from '/ckeditor5/ui/model.js';
|
|
|
|
|
|
|
|
|
|
describe( 'EditorUIView', () => {
|
|
describe( 'EditorUIView', () => {
|
|
|
let editorUIView;
|
|
let editorUIView;
|
|
|
|
|
|
|
|
beforeEach( () => {
|
|
beforeEach( () => {
|
|
|
- editorUIView = new EditorUIView( new Model() );
|
|
|
|
|
|
|
+ editorUIView = new EditorUIView();
|
|
|
|
|
|
|
|
return editorUIView.init();
|
|
return editorUIView.init();
|
|
|
} );
|
|
} );
|