8
0

table.js 626 B

12345678910111213141516171819
  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 Table from '../src/table';
  6. import TableEditing from '../src/tableediting';
  7. import TableUI from '../src/tableui';
  8. import Widget from '@ckeditor/ckeditor5-widget/src/widget';
  9. describe( 'Table', () => {
  10. it( 'requires TableEditing, TableUI and Widget', () => {
  11. expect( Table.requires ).to.deep.equal( [ TableEditing, TableUI, Widget ] );
  12. } );
  13. it( 'has proper name', () => {
  14. expect( Table.pluginName ).to.equal( 'Table' );
  15. } );
  16. } );