8
0

underline.js 632 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 Underline from '../src/underline';
  6. import UnderlineEditing from '../src/underline/underlineediting';
  7. import UnderlineUI from '../src/underline/underlineui';
  8. describe( 'Underline', () => {
  9. it( 'should require UnderlineEditing and UnderlineUI', () => {
  10. expect( Underline.requires ).to.deep.equal( [ UnderlineEditing, UnderlineUI ] );
  11. } );
  12. it( 'should be named', () => {
  13. expect( Underline.pluginName ).to.equal( 'Underline' );
  14. } );
  15. } );