font.js 485 B

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