Results 2 comments of Osmyn
trafficstars

This is the workaround mentioned above: ``` StyleSheet.create({ textInput: { ...Platform.select({ ios: { paddingVertical: 0.001, // fix line wrap issue }, android: {}, }), } }); ```

I did something similar with mocking moment with moment-timezone: ``` let diffMins = updateThreshold + 1; jest.mock('moment', () => { const mMoment = { diff: jest.fn(() => diffMins), }; const...