The Jest command-line tools are all you need to run your unit tests. There are a number of ways that the tool can be used. First, you'll learn how to invoke the test runner from a create-react-app environment and how to use the interactive watch mode options. Then, you'll learn how to run Jest in a standalone environment without the help of create-react-app.
Running tests
Running tests using react-scripts
When you create your React application using create-react-app, you're ready to run tests right away. In fact, as part of the boilerplate code that's created for you, a unit test for the App component is created. This test is added so that Jest will find a test that it can run. It doesn't actually...