weechatRN

Weechat relay client for iOS using websockets https://github.com/mhoran/weechatRN
git clone http://git.hanabi.in/repos/weechatRN.git
Log | Files | Refs | README | LICENSE

jest.setup.js (287B)


      1 jest.mock('react-native/Libraries/Animated/src/NativeAnimatedHelper');
      2 
      3 jest.mock('redux-persist', () => {
      4   const real = jest.requireActual('redux-persist');
      5   return {
      6     ...real,
      7     persistReducer: jest
      8       .fn()
      9       .mockImplementation((config, reducers) => reducers)
     10   };
     11 });