| 123456789101112131415161718 |
- /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- import Table from '../src/table';
- import TableEditing from '../src/tableediting';
- import TableUI from '../src/tableui';
- describe( 'Table', () => {
- it( 'requires TableEditing and TableUI', () => {
- expect( Table.requires ).to.deep.equal( [ TableEditing, TableUI ] );
- } );
- it( 'has proper name', () => {
- expect( Table.pluginName ).to.equal( 'Table' );
- } );
- } );
|