8
0

liststyles.js 626 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 ListStyles from '../src/liststyles';
  6. import ListStylesEditing from '../src/liststylesediting';
  7. import ListStylesUI from '../src/liststylesui';
  8. describe( 'ListStyles', () => {
  9. it( 'should be named', () => {
  10. expect( ListStyles.pluginName ).to.equal( 'ListStyles' );
  11. } );
  12. it( 'should require ListStylesEditing and ListStylesUI', () => {
  13. expect( ListStyles.requires ).to.deep.equal( [ ListStylesEditing, ListStylesUI ] );
  14. } );
  15. } );