8
0

essentials.js 528 B

123456789101112131415161718
  1. /**
  2. * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. import Essentials from '../src/essentials';
  6. import Enter from '../src/enter';
  7. import ShiftEnter from '../src/shiftenter';
  8. describe( 'Essentials Feature', () => {
  9. it( 'should require Enter and ShiftEnter', () => {
  10. expect( Essentials.requires ).to.deep.equal( [ Enter, ShiftEnter ] );
  11. } );
  12. it( 'should be named', () => {
  13. expect( Essentials.pluginName ).to.equal( 'Essentials' );
  14. } );
  15. } );