font.js 427 B

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