How to test props in React Testing Library
In this post, we’ll learn how to test the props a React Function Component receives with React Testing Library and Jest. Before React Testing Library appeared, most of us were writing tests with Enzyme. Enzyme had a completely different approach to testing React components. We could play with the React components’ internal state and test…