8
0

list.js 542 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 List from '../src/list';
  6. import ListEditing from '../src/listediting';
  7. import ListUI from '../src/listui';
  8. describe( 'List', () => {
  9. it( 'should be named', () => {
  10. expect( List.pluginName ).to.equal( 'List' );
  11. } );
  12. it( 'should require ListEditing and ListUI', () => {
  13. expect( List.requires ).to.deep.equal( [ ListEditing, ListUI ] );
  14. } );
  15. } );