liststyle.js 612 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 ListStyle from '../src/liststyle';
  6. import ListStyleEditing from '../src/liststyleediting';
  7. import ListStyleUI from '../src/liststyleui';
  8. describe( 'ListStyle', () => {
  9. it( 'should be named', () => {
  10. expect( ListStyle.pluginName ).to.equal( 'ListStyle' );
  11. } );
  12. it( 'should require ListStyleEditing and ListStyleUI', () => {
  13. expect( ListStyle.requires ).to.deep.equal( [ ListStyleEditing, ListStyleUI ] );
  14. } );
  15. } );