Remove ActivityIndicator from ScrollView snapshot tests (#22729)
Summary: `ActivityIndicator` was not consistent when running snapshot tests so I removed it. From diff: ![image](https://user-images.githubusercontent.com/7029942/50274094-9c662700-043c-11e9-9cac-ccc1b69695c1.png) Changelog: ---------- [iOS] [FIXED] - Fixed ScrollViewExample snapshot tests Pull Request resolved: https://github.com/facebook/react-native/pull/22729 Differential Revision: D13528756 Pulled By: hramos fbshipit-source-id: 747d91ad6a8fb8f0aa8022496bd8855a90710142
This commit is contained in:
parent
c1c2a5bce5
commit
d7025d2220
Binary file not shown.
Before Width: | Height: | Size: 284 KiB After Width: | Height: | Size: 285 KiB |
Binary file not shown.
Before Width: | Height: | Size: 586 KiB After Width: | Height: | Size: 586 KiB |
|
@ -9,7 +9,6 @@
|
|||
*/
|
||||
'use strict';
|
||||
|
||||
const ActivityIndicator = require('ActivityIndicator');
|
||||
const Platform = require('Platform');
|
||||
const React = require('react');
|
||||
const ReactNative = require('react-native');
|
||||
|
@ -155,7 +154,6 @@ if (Platform.OS === 'ios') {
|
|||
autoscrollToTopThreshold: 10,
|
||||
}}
|
||||
style={styles.scrollView}>
|
||||
<ActivityIndicator style={{height: 40}} />
|
||||
{this.state.items.map(item =>
|
||||
React.cloneElement(item, {key: item.props.msg}),
|
||||
)}
|
||||
|
@ -168,7 +166,6 @@ if (Platform.OS === 'ios') {
|
|||
autoscrollToTopThreshold: 10,
|
||||
}}
|
||||
style={[styles.scrollView, styles.horizontalScrollView]}>
|
||||
<ActivityIndicator style={{width: 40}} />
|
||||
{this.state.items.map(item =>
|
||||
React.cloneElement(item, {key: item.props.msg, style: null}),
|
||||
)}
|
||||
|
|
Loading…
Reference in New Issue