Skip to content

Commit

Permalink
test: fix grid-pro tests (#260)
Browse files Browse the repository at this point in the history
  • Loading branch information
tomivirkki authored and web-padawan committed Oct 8, 2024
1 parent 8caae20 commit df2a4f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/Grid.spec.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -393,8 +393,8 @@ describe('Grid', () => {
element.dispatchEvent(new MouseEvent('dblclick', { bubbles: true }));
}

function focusOut(element: Element) {
element.dispatchEvent(new FocusEvent('focusout', { bubbles: true }));
function focusOut(element: HTMLElement) {
element.blur();
}

beforeEach(() => {
Expand Down

0 comments on commit df2a4f2

Please sign in to comment.