insomnia/packages/insomnia-app/app/common/__mocks__/analytics.ts
Dimitri Mitropoulos 5f4c19da35
[TypeScript] Phase 1 & 2 (#3370)
Co-authored-by: Opender Singh <opender.singh@konghq.com>
2021-05-12 18:35:00 +12:00

5 lines
237 B
TypeScript

// WARNING: changing this to `export default` will break the mock and be incredibly hard to debug. Ask me how I know.
const trackEvent = jest.fn();
const trackSegmentEvent = jest.fn();
module.exports = { trackEvent, trackSegmentEvent };