UNPKG

react-native-mock-tmp-build

Version:

A fully mocked and test-friendly version of react native

13 lines (10 loc) 298 B
const ReactNativeMock = require('./build/react-native'); // the cache key that real react native would get const key = require.resolve('react-native'); // make sure the cache is filled with our lib require.cache[key] = { id: key, filename: key, loaded: true, exports: ReactNativeMock, };