Przeglądaj źródła

Made Karma complain less.

Piotrek Koszuliński 9 lat temu
rodzic
commit
2991f7ea41

+ 1 - 1
packages/ckeditor5-link/tests/ui/linkform.js

@@ -25,7 +25,7 @@ describe( 'LinkForm', () => {
 		linkForm = new LinkForm( model, view );
 	} );
 
-	describe( 'constructor', () => {
+	describe( 'constructor()', () => {
 		it( 'creates view#submit -> model#submit binding', () => {
 			const spy = sinon.spy();
 

+ 1 - 1
packages/ckeditor5-link/tests/ui/linkformview.js

@@ -17,7 +17,7 @@ describe( 'LinkFormView', () => {
 		view.init();
 	} );
 
-	describe( 'constructor', () => {
+	describe( 'constructor()', () => {
 		it( 'should create element from template', () => {
 			expect( view.element.classList.contains( 'ck-link-form' ) ).to.true;
 		} );

+ 1 - 1
packages/ckeditor5-link/tests/unlinkcommand.js

@@ -33,7 +33,7 @@ describe( 'UnlinkCommand', () => {
 		command.destroy();
 	} );
 
-	describe( 'constructor', () => {
+	describe( 'constructor()', () => {
 		it( 'should listen on selection attribute change and refresh state', () => {
 			const refreshStateSpy = testUtils.sinon.spy( command, 'refreshState' );