UNPKG

react-native-navigation

Version:

React Native Navigation - truly native navigation for iOS and Android

17 lines (13 loc) 562 B
export const ApplicationMock = require('./Application').Application; export * from './constants'; export function mockNativeComponents() { const { NativeCommandsSender } = require('./mocks/NativeCommandsSender'); const { NativeEventsReceiver } = require('./mocks/NativeEventsReceiver'); const { AppRegistryService } = require('./mocks/AppRegistryService'); const { Navigation } = require('react-native-navigation'); Navigation.mockNativeComponents( new NativeCommandsSender(), new NativeEventsReceiver(), new AppRegistryService() ); }