fontsize.js 618 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 FontSize from './../src/fontsize';
  6. import FontSizeEditing from './../src/fontsize/fontsizeediting';
  7. import FontSizeUI from './../src/fontsize/fontsizeui';
  8. describe( 'FontSize', () => {
  9. it( 'requires FontSizeEditing & FontSizeUI', () => {
  10. expect( FontSize.requires ).to.deep.equal( [ FontSizeEditing, FontSizeUI ] );
  11. } );
  12. it( 'defines plugin name', () => {
  13. expect( FontSize.pluginName ).to.equal( 'FontSize' );
  14. } );
  15. } );