Browse Source

Made Karma complain less.

Piotrek Koszuliński 9 years ago
parent
commit
5106539c1a

+ 1 - 1
packages/ckeditor5-editor-classic/tests/classic.js

@@ -34,7 +34,7 @@ describe( 'ClassicEditor', () => {
 		editorElement.remove();
 	} );
 
-	describe( 'constructor', () => {
+	describe( 'constructor()', () => {
 		beforeEach( () => {
 			editor = new ClassicEditor( editorElement );
 		} );

+ 1 - 1
packages/ckeditor5-editor-classic/tests/classiceditorui.js

@@ -39,7 +39,7 @@ describe( 'ClassicEditorUI', () => {
 		editorUI.featureComponents.add( 'bar', Button, ButtonView, new Model( {} ) );
 	} );
 
-	describe( 'constructor', () => {
+	describe( 'constructor()', () => {
 		it( 'creates toolbar', () => {
 			expect( editorUI.toolbar ).to.be.instanceof( Toolbar );
 			expect( editorUI.toolbar.view ).to.be.instanceof( StickyToolbarView );