weakinsertdelta.js 388 B

123456789101112
  1. /**
  2. * @license Copyright (c) 2003-2017, CKSource - Frederico Knabben. All rights reserved.
  3. * For licensing, see LICENSE.md.
  4. */
  5. import WeakInsertDelta from '../../../src/model/delta/weakinsertdelta';
  6. describe( 'WeakInsertDelta', () => {
  7. it( 'should provide proper className', () => {
  8. expect( WeakInsertDelta.className ).to.equal( 'engine.model.delta.WeakInsertDelta' );
  9. } );
  10. } );