bold.js 552 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 Bold from '../src/bold';
  6. import BoldEditing from '../src/bold/boldediting';
  7. import BoldUI from '../src/bold/boldui';
  8. describe( 'Bold', () => {
  9. it( 'should require BoldEditing and BoldUI', () => {
  10. expect( Bold.requires ).to.deep.equal( [ BoldEditing, BoldUI ] );
  11. } );
  12. it( 'should be named', () => {
  13. expect( Bold.pluginName ).to.equal( 'Bold' );
  14. } );
  15. } );