| 123456789101112131415161718 |
- /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- import Font from './../src/font';
- import FontFamily from './../src/fontfamily';
- import FontSize from './../src/fontsize';
- describe( 'Font', () => {
- it( 'requires FontSize', () => {
- expect( Font.requires ).to.deep.equal( [ FontFamily, FontSize ] );
- } );
- it( 'defines plugin name', () => {
- expect( Font.pluginName ).to.equal( 'Font' );
- } );
- } );
|