Bläddra i källkod

Removed a test which was also removed on master.

Piotrek Koszuliński 9 år sedan
förälder
incheckning
a2dd06553b
1 ändrade filer med 0 tillägg och 9 borttagningar
  1. 0 9
      tests/editor/baseeditor.js

+ 0 - 9
tests/editor/baseeditor.js

@@ -8,21 +8,12 @@
 'use strict';
 
 import Editor from '/ckeditor5/editor.js';
-import EditorConfig from '/ckeditor5/editorconfig.js';
 import Command from '/ckeditor5/command/command.js';
 import Locale from '/ckeditor5/utils/locale.js';
 import CKEditorError from '/ckeditor5/utils/ckeditorerror.js';
 import Document from '/ckeditor5/engine/treemodel/document.js';
 
 describe( 'Editor', () => {
-	describe( 'config', () => {
-		it( 'should be an instance of EditorConfig', () => {
-			const editor = new Editor();
-
-			expect( editor.config ).to.be.an.instanceof( EditorConfig );
-		} );
-	} );
-
 	describe( 'locale', () => {
 		it( 'is instantiated and t() is exposed', () => {
 			const editor = new Editor();