ckeditor.js 375 B

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