removedelta.js 368 B

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