8
0
Просмотр исходного кода

Tests: Refactoring in KeystrokeHandler tests.

Aleksander Nowodzinski 9 лет назад
Родитель
Сommit
a3a3481c61
1 измененных файлов с 0 добавлено и 2 удалено
  1. 0 2
      packages/ckeditor5-utils/tests/keystrokehandler.js

+ 0 - 2
packages/ckeditor5-utils/tests/keystrokehandler.js

@@ -35,9 +35,7 @@ describe( 'KeystrokeHandler', () => {
 			sinon.assert.calledOnce( spy );
 			sinon.assert.calledWithExactly( spy, keyEvtData );
 		} );
-	} );
 
-	describe( 'constructor()', () => {
 		it( 'triggers #press on #keydown', () => {
 			const spy = sinon.spy( keystrokes, 'press' );
 			const keyEvtData = { keyCode: 1 };