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. } );