@@ -18,7 +18,7 @@ import { Subject, fromEvent } from 'rxjs';
1818import { SortingDirection } from '../../data-operations/sorting-strategy' ;
1919import { IGridEditDoneEventArgs , IGridEditEventArgs , IgxColumnComponent } from '../public_api' ;
2020
21- const DEBOUNCETIME = 30 ;
21+ const DEBOUNCE_TIME = 30 ;
2222const CELL_CSS_CLASS = '.igx-grid__td' ;
2323const CELL_CSS_CLASS_NUMBER_FORMAT = '.igx-grid__td--number' ;
2424const CELL_CLASS_IN_EDIT_MODE = 'igx-grid__td--editing' ;
@@ -469,7 +469,7 @@ describe('IgxGrid - Cell Editing #grid', () => {
469469
470470 UIInteractions . triggerKeyDownEvtUponElem ( 'ArrowDown' , inputElem , true ) ;
471471 fixture . detectChanges ( ) ;
472- await wait ( DEBOUNCETIME ) ;
472+ await wait ( DEBOUNCE_TIME ) ;
473473
474474 inputElem = document . activeElement as HTMLInputElement ;
475475 expect ( cell . editMode ) . toBeTruthy ( ) ;
@@ -499,7 +499,7 @@ describe('IgxGrid - Cell Editing #grid', () => {
499499
500500 UIInteractions . triggerKeyDownEvtUponElem ( 'ArrowUp' , inputElem , true ) ;
501501 fixture . detectChanges ( ) ;
502- await wait ( DEBOUNCETIME ) ;
502+ await wait ( DEBOUNCE_TIME ) ;
503503
504504 inputElem = document . activeElement as HTMLInputElement ;
505505 expect ( cell . editMode ) . toBeTruthy ( ) ;
@@ -524,7 +524,7 @@ describe('IgxGrid - Cell Editing #grid', () => {
524524
525525 UIInteractions . triggerKeyDownEvtUponElem ( 'arrowright' , inputElem , true ) ;
526526 fixture . detectChanges ( ) ;
527- await wait ( DEBOUNCETIME ) ;
527+ await wait ( DEBOUNCE_TIME ) ;
528528
529529 const displayContainer = parseInt ( virtRow . dc . instance . _viewContainer . element . nativeElement . style . left , 10 ) ;
530530 expect ( cell . editMode ) . toBeTruthy ( ) ;
@@ -551,7 +551,7 @@ describe('IgxGrid - Cell Editing #grid', () => {
551551 expect ( cellElem . classList . contains ( CELL_CLASS_IN_EDIT_MODE ) ) . toBe ( true ) ;
552552 const virtRowStyle = parseInt ( virtRow . dc . instance . _viewContainer . element . nativeElement . style . left , 10 ) ;
553553 UIInteractions . triggerKeyDownEvtUponElem ( 'ArrowLeft' , inputElem , fixture ) ;
554- await wait ( DEBOUNCETIME ) ;
554+ await wait ( DEBOUNCE_TIME ) ;
555555 fixture . detectChanges ( ) ;
556556
557557 inputElem = document . activeElement as HTMLInputElement ;
0 commit comments