Skip to content

Commit ca36aeb

Browse files
committed
chore(*): update failing test
1 parent 3149e4a commit ca36aeb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2520,7 +2520,7 @@ describe('IgxGrid Multi Row Layout - Keyboard navigation #grid', () => {
25202520
// tab through cols and check order is correct - ContactName should be skipped.
25212521
for (let i = 1; i < order.length; i++) {
25222522
GridFunctions.simulateGridContentKeydown(fix, 'Tab');
2523-
await wait();
2523+
await wait(DEBOUNCETIME);
25242524
fix.detectChanges();
25252525

25262526
cell = grid.getCellByColumn(0, order[i]);
@@ -2530,7 +2530,7 @@ describe('IgxGrid Multi Row Layout - Keyboard navigation #grid', () => {
25302530
// shift+tab through cols and check order is correct - ContactName should be skipped.
25312531
for (let j = order.length - 2; j >= 0; j--) {
25322532
GridFunctions.simulateGridContentKeydown(fix, 'Tab', false, true);
2533-
await wait();
2533+
await wait(DEBOUNCETIME);
25342534
fix.detectChanges();
25352535

25362536
cell = grid.getCellByColumn(0, order[j]);

0 commit comments

Comments
 (0)