Browse Source

Removed mistakenly committed it.only().

Piotrek Koszuliński 8 years ago
parent
commit
f55521c515
1 changed files with 1 additions and 1 deletions
  1. 1 1
      packages/ckeditor5-image/tests/imagecaption/imagecaptionengine.js

+ 1 - 1
packages/ckeditor5-image/tests/imagecaption/imagecaptionengine.js

@@ -42,7 +42,7 @@ describe( 'ImageCaptionEngine', () => {
 		expect( editor.plugins.get( ImageCaptionEngine ) ).to.be.instanceOf( ImageCaptionEngine );
 	} );
 
-	it.only( 'should set proper schema rules', () => {
+	it( 'should set proper schema rules', () => {
 		expect( document.schema.check( { name: 'caption', iniside: 'image' } ) ).to.be.true;
 		expect( document.schema.check( { name: '$inline', inside: 'caption' } ) ).to.be.true;
 		expect( document.schema.limits.has( 'caption' ) );