Skip to content

Instantly share code, notes, and snippets.

View pietrofxq's full-sized avatar

Pietro Coelho pietrofxq

View GitHub Profile
@apieceofbart
apieceofbart / test.js
Created February 21, 2018 13:15
mock lodash debounce in jest
// somewhere on top
import _ from 'lodash';
jest.unmock('lodash');
// then
_.debounce = jest.fn((fn) => fn);