What is snapshot testing?
Snapshot testing is a way of testing a component’s rendered output by saving it to a
snapshot file and comparing it with future renders. This helps detect any unintended
changes in the UI.
How to write snapshot tests:
Run Jest with snapshot testing:
npm test -- --updateSnapshot