react-native-heap
react-native-heap copied to clipboard
Jest mocking instructions
How to mock this library to work with jest tests?
Without creating any mock and running jest tests after installing this library I get
/node_modules/@heap/react-native-heap/dist/js/Heap.js:1
({"Object.<anonymous>":function(module,exports,require,__dirname,__filename,jest){import { NativeModules } from 'react-native';
SyntaxError: Cannot use import statement outside a module```
I mock it like this in my jest setup file:
jest.mock('@heap/react-native-heap', () => ({ withReactNavigationAutotrack: jest.fn() }));