What are unit tests?
a self contained small piece of code that can be tested
Why is it important to write unit tests?
good way to debug your code and to refactor your code
What code should be tested with a unit test? What code is not well suited for unit tests?
a small unit should be tested with a unit test and a large block of code is not well suited for unit tests
What is Jest? What are some other popular JavaScript unit testing frameworks?