Skip to content

Commit

Permalink
test: fix a test case
Browse files Browse the repository at this point in the history
  • Loading branch information
tomivirkki committed Oct 9, 2023
1 parent 4944685 commit a8495e6
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion packages/grid/test/keyboard-navigation.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -2441,7 +2441,9 @@ describe('lazy data provider', () => {
// Keyboard navigate to the last row cell
ctrlEnd();
// Blur grid
grid.blur();
focusable = document.createElement('input');
grid.parentNode.appendChild(focusable);
focusable.focus();

cellFocusSpy.resetHistory();
flushDataProvider();
Expand Down

0 comments on commit a8495e6

Please sign in to comment.