Hard Prerequisites |
IMPORTANT: Please review these prerequisites, they include important information that will help you with this content. |
|
As you know,testing is always a good idea!
Please add jest based unit tests to all your components
In this project we would like to see that you are making good use of snapshot testing.
Please put your test code with the component under test. For example, if you had a single button component you might do this:
src/
├─ components/
│ ├─ button.js
│ ├─ button.style.js
│ └─ button.test.js
In other words, your tests should be co-located with the code under test.