testID is used to locate a view in end to end tests.
StaticAnimator and EventAnimator should accept testID as a prop.
A better approach would be to accept any View props and pass them along to the Animated.View. We could potentially do this by accessing the props we use a spread:
testID
is used to locate a view in end to end tests.StaticAnimator
andEventAnimator
should accepttestID
as a prop.A better approach would be to accept any
View
props and pass them along to theAnimated.View
. We could potentially do this by accessing the props we use a spread:Please also update the components'
prop-types
.