diff --git a/src/image/__tests__/Image.js b/src/image/__tests__/Image.js index 16d5e223f8..52f29cf73b 100644 --- a/src/image/__tests__/Image.js +++ b/src/image/__tests__/Image.js @@ -15,33 +15,6 @@ describe('Image Component', () => { global.console.warn = () => null; }); - it('should render on ios', () => { - const component = shallow( - - ); - - component.find({ testID: 'RNE__Image' }).prop('onLoad')(); - jest.runOnlyPendingTimers(); - - expect(component.length).toBe(1); - expect(toJson(component)).toMatchSnapshot(); - }); - - it('should render on android', () => { - Platform.OS = 'android'; - Platform.Version = 25; - - const component = shallow( - - ); - - component.find({ testID: 'RNE__Image' }).prop('onLoad')(); - jest.runOnlyPendingTimers(); - - expect(component.length).toBe(1); - expect(toJson(component)).toMatchSnapshot(); - }); - it('should render the appropriate testId when one is passed.', () => { const component = shallow( `; -exports[`Image Component should render on android 1`] = ` - - - - - - - -`; - -exports[`Image Component should render on ios 1`] = ` - - - - - - - -`; - exports[`Image Component should render without the transition 1`] = `