8
0

ckeditor.js 355 B

12345678910111213141516
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. 'use strict';
  6. const modules = bender.amd.require( 'ckeditor' );
  7. describe( 'isDebug', () => {
  8. it( 'is a boolean', () => {
  9. const CKEDITOR = modules.ckeditor;
  10. expect( CKEDITOR.isDebug ).to.be.a( 'boolean' );
  11. } );
  12. } );