I am currently using the built-in Jest testing environment that comes with the generated boilerplate by create-react-app. With Jest's integration with Istanbul, one can get the unit test coverage by total number of statements, functions, lines, and branches covered. Aside from these, is there any way to get the total number of assertions used in all the unit test files? Thanks!