浏览代码

Implemented body region and a base EditorUIView.

Piotrek Koszuliński 9 年之前
父节点
当前提交
90cdc73dfd
共有 1 个文件被更改,包括 0 次插入24 次删除
  1. 0 24
      packages/ckeditor5-utils/tests/editorui.js

+ 0 - 24
packages/ckeditor5-utils/tests/editorui.js

@@ -1,24 +0,0 @@
-/**
- * @license Copyright (c) 2003-2016, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
-
-'use strict';
-
-import Editor from '/ckeditor5/core/editor.js';
-import EditorUI from '/ckeditor5/core/editorui.js';
-
-describe( 'EditorUI', () => {
-	let editor, editorUI;
-
-	beforeEach( () => {
-		editor = new Editor();
-		editorUI = new EditorUI( editor );
-	} );
-
-	describe( 'constructor', () => {
-		it( 'sets all the properties', () => {
-			expect( editorUI ).to.have.property( 'editor', editor );
-		} );
-	} );
-} );