05
Jun
There are different solutions on test UI Jest unit testing Jest Snapshots Integration testing Image comparison testing Accessibility reports Manual testing When to us what? In my experience a big project will end up using all of them. Let start with the first Jest unit testing Unit testing is a type of software testing that focuses on individual units or components of a software system. Nice... but let also mention that: we want to test behavior and not implementation The goal is I can change 100% the implementation and the test will still pass How? the style is called "Black…