summaryrefslogtreecommitdiff
path: root/spec/frontend/__mocks__/lodash/defer.js
blob: 9325cb28ba6fdc144b20722969779c830059b117 (plain)
1
2
3
4
5
/**
 * Instead of messing around with timers, we execute deferred functions
 * immediately in our specs
 */
export default (fn, ...args) => fn(...args);