8
0

htmlembed.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 HTMLEmbed from '../src/htmlembed';
  6. import HTMLEmbedUI from '../src/htmlembedui';
  7. import HTMLEmbedEditing from '../src/htmlembedediting';
  8. describe( 'HTMLEMbed', () => {
  9. it( 'should require HTMLEmbedEditing and HTMLEmbedUI', () => {
  10. expect( HTMLEmbed.requires ).to.deep.equal( [ HTMLEmbedEditing, HTMLEmbedUI ] );
  11. } );
  12. it( 'should be named', () => {
  13. expect( HTMLEmbed.pluginName ).to.equal( 'HTMLEmbed' );
  14. } );
  15. } );