Skip to content

Instantly share code, notes, and snippets.

@chinhvo
Forked from apieceofbart/test.js
Created June 10, 2025 07:05
Show Gist options
  • Save chinhvo/61442e678285f29570a5409b6fd6d738 to your computer and use it in GitHub Desktop.
Save chinhvo/61442e678285f29570a5409b6fd6d738 to your computer and use it in GitHub Desktop.
mock lodash debounce in jest
// somewhere on top
import _ from 'lodash';
jest.unmock('lodash');
// then
_.debounce = jest.fn((fn) => fn);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment