8
0

strikethrough.js 696 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 Strikethrough from '../src/strikethrough';
  6. import StrikethroughEditing from '../src/strikethrough/strikethroughediting';
  7. import StrikethroughUI from '../src/strikethrough/strikethroughui';
  8. describe( 'Strikethrough', () => {
  9. it( 'should require StrikethroughEditing and StrikethroughUI', () => {
  10. expect( Strikethrough.requires ).to.deep.equal( [ StrikethroughEditing, StrikethroughUI ] );
  11. } );
  12. it( 'should be named', () => {
  13. expect( Strikethrough.pluginName ).to.equal( 'Strikethrough' );
  14. } );
  15. } );