fontsize.js 488 B

1234567891011121314151617
  1. /**
  2. * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. import FontSize from './../src/fontsize';
  6. import FontSizeEditing from './../src/fontsize/fontsizeediting';
  7. describe( 'FontSize', () => {
  8. it( 'requires FontSizeEditing', () => {
  9. expect( FontSize.requires ).to.deep.equal( [ FontSizeEditing ] );
  10. } );
  11. it( 'defines plugin name', () => {
  12. expect( FontSize.pluginName ).to.equal( 'FontSize' );
  13. } );
  14. } );