fontbackgroundcolor.js 794 B

123456789101112131415161718
  1. /**
  2. * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. import FontBackgroundColor from './../src/fontbackgroundcolor';
  6. import FontBackgroundColorEditing from './../src/fontbackgroundcolor/fontbackgroundcolorediting';
  7. import FontBackgroundColorUI from '../src/fontbackgroundcolor/fontbackgroundcolorui';
  8. describe( 'FontBackgroundColor', () => {
  9. it( 'requires FontBackgroundColorEditing and FontBackgroundColorUI', () => {
  10. expect( FontBackgroundColor.requires ).to.deep.equal( [ FontBackgroundColorEditing, FontBackgroundColorUI ] );
  11. } );
  12. it( 'defines plugin name', () => {
  13. expect( FontBackgroundColor.pluginName ).to.equal( 'FontBackgroundColor' );
  14. } );
  15. } );