This isn't a prop that I generally pass through to the ListView component (I generally want the default ScrollView component) and it was giving me warnings when running my tests:
Warning: Failed propType: Required prop renderScrollComponent was not specified in ListView.
What changed?
Added the default prop configuration for renderScrollComponent that matches what is in the un-mocked RN code
Why?
This isn't a prop that I generally pass through to the
ListView
component (I generally want the defaultScrollView
component) and it was giving me warnings when running my tests: