summaryrefslogtreecommitdiff
path: root/spec/frontend/__mocks__/mousetrap/index.js
blob: 63c92fa9a09dd12b9baf4bfc87bb0853758cfe05 (plain)
1
2
3
4
5
6
/* global Mousetrap */
// `mousetrap` uses amd which webpack understands but Jest does not
// Thankfully it also writes to a global export so we can es6-ify it
import 'mousetrap';

export default Mousetrap;