genericnormalizer.js 573 B

1234567891011121314151617
  1. /**
  2. * @license Copyright (c) 2003-2019, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
  4. */
  5. import GenericNormalizer from '../../src/normalizers/genericnormalizer';
  6. // `execute()` of the generic normalizer is tested with autogenerated normalization tests.
  7. describe( 'GenericNormalizer', () => {
  8. const normalizer = new GenericNormalizer();
  9. describe( 'isActive()', () => {
  10. it( 'should return always true ', () => {
  11. expect( normalizer.isActive() ).to.be.true;
  12. } );
  13. } );
  14. } );