Przeglądaj źródła

Tests: Updated tests for the EditorUIView component.

Aleksander Nowodzinski 9 lat temu
rodzic
commit
68b8cc8532

+ 1 - 2
packages/ckeditor5-ui/tests/editorui/editoruiview.js

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