extensions.js 382 B

12345678910111213141516
  1. /**
  2. * @license Copyright (c) 2003-2015, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. /* globals bender, CKEDITOR */
  6. 'use strict';
  7. ( function() {
  8. // Make Bender wait to start running tests.
  9. var done = bender.defer();
  10. // Wait for the "ckeditor" module to be ready to start testing.
  11. CKEDITOR.require( [ 'ckeditor' ], done );
  12. } )();