| 123456789101112131415161718192021222324 |
- /**
- * @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 );
- } );
- } );
- } );
|