table.js 500 B

123456789101112131415161718
  1. /**
  2. * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. import Table from '../src/table';
  6. import TableEditing from '../src/tableediting';
  7. import TableUI from '../src/tableui';
  8. describe( 'Table', () => {
  9. it( 'requires TableEditing and TableUI', () => {
  10. expect( Table.requires ).to.deep.equal( [ TableEditing, TableUI ] );
  11. } );
  12. it( 'has proper name', () => {
  13. expect( Table.pluginName ).to.equal( 'Table' );
  14. } );
  15. } );