8
0

typing.js 538 B

1234567891011121314151617
  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 Typing from '../src/typing';
  6. import Input from '../src/input';
  7. import Delete from '../src/delete';
  8. describe( 'Typing feature', () => {
  9. it( 'requires Input and Delete features', () => {
  10. const typingRequirements = Typing.requires;
  11. expect( typingRequirements ).to.contain( Input );
  12. expect( typingRequirements ).to.contain( Delete );
  13. } );
  14. } );