removeformat.js 745 B

12345678910111213141516171819202122
  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 RemoveFormat from '../src/removeformat';
  6. import RemoveFormatEditing from '../src/removeformatediting';
  7. import RemoveFormatUI from '../src/removeformatui';
  8. describe( 'RemoveFormat', () => {
  9. it( 'should require RemoveFormatEditing', () => {
  10. expect( RemoveFormat.requires ).to.include( RemoveFormatEditing );
  11. } );
  12. it( 'should require RemoveFormatUI', () => {
  13. expect( RemoveFormat.requires ).to.include( RemoveFormatUI );
  14. } );
  15. it( 'should have pluginName property', () => {
  16. expect( RemoveFormat.pluginName ).to.equal( 'RemoveFormat' );
  17. } );
  18. } );