UNPKG

react-native-template-tuil

Version:

Clean and minimalist React Native template for a quick start with TypeScript.

12 lines (10 loc) 207 B
/* This is the file where you can mock specific modules for jest testing */ export default {} jest.mock( 'weather', () => ({ doesItRain: jest.fn().mockReturnValue(true) }), { virtual: true } )