TL;DR: This is how I currently approach testing React/Redux Applications.Minimal component tests: verify that the component actually renders.Avoid testing implementation details.Verify important callbacks and other props, but keep it minimal.The need to test logic inside a component might signal the need for refactoring.Using Eslint, PropTypes and Flow will add value.Test reducers as they are func