Skip to content

Commit

Permalink
Remove jest
Browse files Browse the repository at this point in the history
  • Loading branch information
matttdawson committed Jan 30, 2025
1 parent de5ee65 commit 373da4c
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/contexts/GridContextProvider.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -618,8 +618,7 @@ export const GridContextProvider = <TData extends GridBaseRow>(props: PropsWithC
try {
gridApi && gridApi.redrawRows(rowNodes ? { rowNodes } : undefined);
} catch (ex) {
// Hide errors in jest, but log them in browser
if (typeof jest === 'undefined') console.error(ex);
console.error(ex);
}
}, 50),
[gridApi],
Expand Down

0 comments on commit 373da4c

Please sign in to comment.