| Note on package usage:
- Enzyme is used to shallow render components
- Jest is used for running the tests. e.g. expect.
- Enzyme also provides expect but these will not work. e.g. Enzyme's `expect(....).to.have.lenght()` won't work whereas Jest's `expect(....).toHaveLength(number)` will work
|
|