8
0

italic.js 584 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 Italic from '../src/italic';
  6. import ItalicEditing from '../src/italic/italicediting';
  7. import ItalicUI from '../src/italic/italicui';
  8. describe( 'Italic', () => {
  9. it( 'should require ItalicEditing and ItalicUI', () => {
  10. expect( Italic.requires ).to.deep.equal( [ ItalicEditing, ItalicUI ] );
  11. } );
  12. it( 'should be named', () => {
  13. expect( Italic.pluginName ).to.equal( 'Italic' );
  14. } );
  15. } );