8
0

fontfamily.js 510 B

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