8
0

heading.js 584 B

123456789101112131415161718
  1. /**
  2. * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. import Heading from '../src/heading';
  6. import HeadingEditing from '../src/headingediting';
  7. import HeadingUI from '../src/headingui';
  8. describe( 'Heading', () => {
  9. it( 'should require HeadingEditing and HeadingUI', () => {
  10. expect( Heading.requires ).to.deep.equal( [ HeadingEditing, HeadingUI ] );
  11. } );
  12. it( 'should be named', () => {
  13. expect( Heading.pluginName ).to.equal( 'Heading' );
  14. } );
  15. } );