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
after doing this configuration in package.json( "test": "react-scripts test --env=jsdom --verbose",) try running your test by npm test.
"test": "react-scripts test --env=jsdom --verbose"
Note : with npm run test description is not reflecting for me as well.