@@ -572,15 +572,15 @@ describe('IgxTreeGrid - Key Board Navigation #tGrid', () => {
572572 expect ( treeGrid . onSelection . emit ) . toHaveBeenCalledTimes ( 1 ) ;
573573
574574 GridFunctions . simulateCellKeydown ( cell , 'ArrowDown' , false , false , true ) ;
575- await wait ( DEBOUNCETIME ) ;
575+ await wait ( 100 ) ;
576576 fix . detectChanges ( ) ;
577577
578578 cell = treeGrid . getCellByColumn ( 9 , 'Name' ) ;
579579 TreeGridFunctions . verifyTreeGridCellSelected ( treeGrid , cell ) ;
580580 expect ( treeGrid . onSelection . emit ) . toHaveBeenCalledTimes ( 2 ) ;
581581
582582 GridFunctions . simulateCellKeydown ( cell , 'ArrowUp' , false , false , true ) ;
583- await wait ( DEBOUNCETIME ) ;
583+ await wait ( 100 ) ;
584584 fix . detectChanges ( ) ;
585585
586586 cell = treeGrid . getCellByColumn ( 0 , 'Name' ) ;
@@ -637,7 +637,7 @@ describe('IgxTreeGrid - Key Board Navigation #tGrid', () => {
637637 expect ( treeGrid . onSelection . emit ) . toHaveBeenCalledTimes ( 1 ) ;
638638
639639 GridFunctions . simulateCellKeydown ( cell , 'End' , false , false , true ) ;
640- await wait ( DEBOUNCETIME ) ;
640+ await wait ( 100 ) ;
641641 fix . detectChanges ( ) ;
642642
643643 cell = treeGrid . getCellByColumn ( 9 , treeColumns [ treeColumns . length - 1 ] ) ;
@@ -646,7 +646,7 @@ describe('IgxTreeGrid - Key Board Navigation #tGrid', () => {
646646 expect ( treeGrid . onSelection . emit ) . toHaveBeenCalledTimes ( 2 ) ;
647647
648648 GridFunctions . simulateCellKeydown ( cell , 'Home' , false , false , true ) ;
649- await wait ( DEBOUNCETIME ) ;
649+ await wait ( 100 ) ;
650650 fix . detectChanges ( ) ;
651651
652652 cell = treeGrid . getCellByColumn ( 0 , treeColumns [ 0 ] ) ;
@@ -673,7 +673,7 @@ describe('IgxTreeGrid - Key Board Navigation #tGrid', () => {
673673
674674 let newCell = treeGrid . getCellByColumn ( 5 , treeColumns [ treeColumns . length - 1 ] ) ;
675675 GridFunctions . simulateCellKeydown ( newCell , 'Tab' ) ;
676- await wait ( DEBOUNCETIME ) ;
676+ await wait ( 100 ) ;
677677 fix . detectChanges ( ) ;
678678
679679 newCell = treeGrid . getCellByColumn ( 6 , treeColumns [ 0 ] ) ;
@@ -691,7 +691,7 @@ describe('IgxTreeGrid - Key Board Navigation #tGrid', () => {
691691
692692 newCell = treeGrid . getCellByColumn ( 6 , treeColumns [ treeColumns . length - 1 ] ) ;
693693 GridFunctions . simulateCellKeydown ( newCell , 'Tab' ) ;
694- await wait ( DEBOUNCETIME ) ;
694+ await wait ( 100 ) ;
695695 fix . detectChanges ( ) ;
696696
697697 newCell = treeGrid . getCellByColumn ( 7 , treeColumns [ 0 ] ) ;
0 commit comments