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

Tests (ui): Removed console logs.

Marek Lewandowski 5 лет назад
Родитель
Сommit
a4e15fd111
1 измененных файлов с 0 добавлено и 4 удалено
  1. 0 4
      packages/ckeditor5-ui/tests/toolbar/toolbarview.js

+ 0 - 4
packages/ckeditor5-ui/tests/toolbar/toolbarview.js

@@ -579,12 +579,8 @@ describe( 'ToolbarView', () => {
 			it( 'doesnt throw when removing the first of grouped items', () => { // (#7655)
 			it( 'doesnt throw when removing the first of grouped items', () => { // (#7655)
 				const items = [ focusable(), focusable(), focusable(), focusable() ];
 				const items = [ focusable(), focusable(), focusable(), focusable() ];
 				view.element.style.width = '200px';
 				view.element.style.width = '200px';
-
 				view.items.addMany( items );
 				view.items.addMany( items );
 
 
-				console.log( ungroupedItems.map( i => i ).length );
-				console.log( groupedItems.map( i => i ).length );
-
 				view.items.remove( 1 );
 				view.items.remove( 1 );
 
 
 				expect( ungroupedItems.map( i => i ) ).to.have.ordered.members( [ items[ 0 ] ] );
 				expect( ungroupedItems.map( i => i ) ).to.have.ordered.members( [ items[ 0 ] ] );