Procházet zdrojové kódy

Passing code coverage through untestable code.

fredck před 11 roky
rodič
revize
6bf8aa14e2
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      ckeditor.js

+ 1 - 1
ckeditor.js

@@ -73,7 +73,7 @@
 
 	// Define a new "ckeditor" module, which overrides the core one with the above and the dev stuff.
 	define( 'ckeditor', [ 'ckeditor-core', 'ckeditor-dev', 'utils' ], function( core, dev, utils ) {
-		root.CKEDITOR = utils.extend( {}, core, root.CKEDITOR, ( dev || {} ) );
+		root.CKEDITOR = utils.extend( {}, core, root.CKEDITOR, ( dev || /* istanbul ignore next */ {} ) );
 
 		return root.CKEDITOR;
 	} );