| 123456789101112 |
- /**
- * @license Copyright (c) 2003-2018, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md.
- */
- import WeakInsertDelta from '../../../src/model/delta/weakinsertdelta';
- describe( 'WeakInsertDelta', () => {
- it( 'should provide proper className', () => {
- expect( WeakInsertDelta.className ).to.equal( 'engine.model.delta.WeakInsertDelta' );
- } );
- } );
|