[e2e] Fix TouchableHighlight in e2e test

This commit is contained in:
Chace Liang 2015-08-11 10:41:15 -07:00
parent a5e9f83a0a
commit eb402d8c7d
1 changed files with 2 additions and 2 deletions

View File

@ -214,12 +214,12 @@ var TouchableHighlight = React.createClass({
onResponderGrant={this.touchableHandleResponderGrant}
onResponderMove={this.touchableHandleResponderMove}
onResponderRelease={this.touchableHandleResponderRelease}
onResponderTerminate={this.touchableHandleResponderTerminate}>
onResponderTerminate={this.touchableHandleResponderTerminate}
testID={this.props.testID}>
{cloneWithProps(
onlyChild(this.props.children),
{
ref: CHILD_REF,
testID: this.props.testID,
}
)}
</View>