Earlier quoted context omitted.
I'm a fan of HOCs as well. My only problem with them is that I'm also a fan of shallow testing, and HOCs don't play nicely with shallow testing. I'm waiting on something like this ( https://github.com/airbnb/enzyme/issues/250 ) to get implemented
Why not just mock the HOC to be the identity fn? `(Component) => Component`
Edit: But he might be pointing to the testing of the actual HOCs/component decorating functions.