linkimage.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 LinkImage from '../src/linkimage';
  6. import LinkImageEditing from '../src/linkimageediting';
  7. import LinkImageUI from '../src/linkimageui';
  8. describe( 'LinkImage', () => {
  9. it( 'should require LinkImageEditing and LinkImageUI', () => {
  10. expect( LinkImage.requires ).to.deep.equal( [ LinkImageEditing, LinkImageUI ] );
  11. } );
  12. it( 'should be named', () => {
  13. expect( LinkImage.pluginName ).to.equal( 'LinkImage' );
  14. } );
  15. } );