8
0

link.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 Link from '../src/link';
  6. import LinkEditing from '../src/linkediting';
  7. import LinkUI from '../src/linkui';
  8. describe( 'Link', () => {
  9. it( 'should require LinkEditing and LinkUI', () => {
  10. expect( Link.requires ).to.deep.equal( [ LinkEditing, LinkUI ] );
  11. } );
  12. it( 'should be named', () => {
  13. expect( Link.pluginName ).to.equal( 'Link' );
  14. } );
  15. } );