Snapshot Testing
Create a snapshot test for the ProfileCard component to ensure UI consistency.
We'll cover the following...
Snapshot tests are a very useful tool when we want to make sure that our UI does not change unexpectedly. A snapshot test case follows these steps:
It renders the UI component.
It then takes a snapshot and compares it to a reference snapshot file stored alongside the test file.
If both states are the same, the snapshot test is successful. Otherwise, we will get errors and need to decide whether we need to update the snapshot tests or fix our components.
Snapshot tests are great for preventing UI regression and ensuring that the application adheres to the code quality and values of our development team.
Limitation of snapshot testing
There is a ...