Parcourir la source

Re-word config.onInit() tests.

Maciej Gołaszewski il y a 6 ans
Parent
commit
79a1d846ab
1 fichiers modifiés avec 2 ajouts et 2 suppressions
  1. 2 2
      packages/ckeditor5-ckfinder/tests/ckfindercommand.js

+ 2 - 2
packages/ckeditor5-ckfinder/tests/ckfindercommand.js

@@ -194,7 +194,7 @@ describe( 'CKFinderCommand', () => {
 			expect( openerMethodOptions ).to.have.property( 'connectorPath', connectorPath );
 		} );
 
-		it( 'should call user defined config.onInit() function', () => {
+		it( 'should call user-defined config.onInit() function', () => {
 			const spy = sinon.spy();
 
 			editor.config.set( 'ckfinder.options.onInit', spy );
@@ -204,7 +204,7 @@ describe( 'CKFinderCommand', () => {
 			sinon.assert.calledOnce( spy );
 		} );
 
-		it( 'should pass CKFinder instance to a user defined config.onInit() function', () => {
+		it( 'should pass CKFinder instance to a user-defined config.onInit() function', () => {
 			const spy = sinon.spy();
 
 			editor.config.set( 'ckfinder.options.onInit', spy );