Skip to content

Commit bcaf120

Browse files
authored
chore(*): Fix failing test in mrl.
1 parent a43086e commit bcaf120

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

projects/igniteui-angular/src/lib/grids/grid/grid-mrl-keyboard-nav.spec.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2549,7 +2549,7 @@ describe('IgxGrid Multi Row Layout - Keyboard navigation #grid', () => {
25492549

25502550
// arrow down
25512551
GridFunctions.simulateCellKeydown(cell, 'ArrowDown');
2552-
await wait();
2552+
await wait(DEBOUNCETIME);
25532553
zone.simulateOnStable();
25542554
fix.detectChanges();
25552555

@@ -2567,7 +2567,7 @@ describe('IgxGrid Multi Row Layout - Keyboard navigation #grid', () => {
25672567

25682568
// arrow up
25692569
GridFunctions.simulateCellKeydown(cell, 'ArrowUp');
2570-
await wait();
2570+
await wait(DEBOUNCETIME);
25712571
zone.simulateOnStable();
25722572
fix.detectChanges();
25732573

@@ -2585,7 +2585,7 @@ describe('IgxGrid Multi Row Layout - Keyboard navigation #grid', () => {
25852585

25862586
// arrow right
25872587
GridFunctions.simulateCellKeydown(cell, 'ArrowRight');
2588-
await wait();
2588+
await wait(DEBOUNCETIME);
25892589
zone.simulateOnStable();
25902590
fix.detectChanges();
25912591

@@ -2603,7 +2603,7 @@ describe('IgxGrid Multi Row Layout - Keyboard navigation #grid', () => {
26032603

26042604
// arrow left
26052605
GridFunctions.simulateCellKeydown(cell, 'ArrowLeft');
2606-
await wait();
2606+
await wait(DEBOUNCETIME);
26072607
zone.simulateOnStable();
26082608
fix.detectChanges();
26092609

0 commit comments

Comments
 (0)