It\'s fairly easy to implement snapshot testing in jest but it\'s something I am not really comfortable with because it feels like I am not actually testing anything. In unit te
You should write both snapshot and unit tests. Snapshot tests will check for changes when rendering, like if className, inline styles, some conditional rendering or loops are not working as they worked before. You should still write unit tests for any functionality that can't be checked with simple rendering (if onClick is called when clicked and so on).