8
0

liststylesui.js 532 B

1234567891011121314151617181920
  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 ListStylesUI from '../src/liststylesui';
  6. describe( 'ListStylesUI', () => {
  7. it( 'should be named', () => {
  8. expect( ListStylesUI.pluginName ).to.equal( 'ListStylesUI' );
  9. } );
  10. describe( 'init()', () => {
  11. it( 'returns null', () => {
  12. const plugin = new ListStylesUI( {} );
  13. expect( plugin.init() ).to.equal( null );
  14. } );
  15. } );
  16. } );