
Unit Testing React, Redux, Selectors, and Epics
Components can be tested with snapshot testing. Tools like Jest (often combined with Enzyme) that offer this functionality take a 'snapshot' of what your component renders--everything from divs, attributes, classNames, props, and state--and saves it to a file, kind of like this:
Frontend Development
