I\'m using jest and enzyme with my create-react-app project. When I run npm test, I get an output that shows the names of the test files that passed but I\'d like t
npm test
Note that, instead of
jest --verbose
you can also set verbose to true in jest.config.js:
verbose
true
jest.config.js
// jest.config.js module.exports = { ... verbose: true, }