| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- /**
- * @license Copyright (c) 2003-2020, CKSource - Frederico Knabben. All rights reserved.
- * For licensing, see LICENSE.md or https://ckeditor.com/legal/ckeditor-oss-license
- */
- import EventInfo from '../src/eventinfo';
- describe( 'EventInfo', () => {
- it( 'should be created properly', () => {
- const event = new EventInfo( this, 'test' );
- expect( event.source ).to.equal( this );
- expect( event.name ).to.equal( 'test' );
- expect( event.path ).to.deep.equal( [] );
- expect( event.stop.called ).to.not.be.true;
- expect( event.off.called ).to.not.be.true;
- } );
- it( 'should have stop() and off() marked', () => {
- const event = new EventInfo( this, 'test' );
- event.stop();
- event.off();
- expect( event.stop.called ).to.be.true;
- expect( event.off.called ).to.be.true;
- } );
- it( 'should not mark "called" in future instances', () => {
- let event = new EventInfo( this, 'test' );
- event.stop();
- event.off();
- event = new EventInfo( 'test' );
- expect( event.stop.called ).to.not.be.true;
- expect( event.off.called ).to.not.be.true;
- } );
- } );
|