Your app's code coverage is what percentage of the code is currently covered by unit tests. In this post I will explain how we can generate a code ...
For further actions, you may consider blocking this person and/or reporting abuse
Nice post!
I really enjoy Jest coverage, but... My problem's with testing private functions/ not exported functions using libs like rewire to get these functions from the module/class. We can test well and Jest assertions work fine, but coverage not. The Jest Coverage just ignore these tests :/
Interesting! I hadn't heard of rewire before. Looks like there's an open issue on their repo for jest coverage but no solution yet π
I like how easy it is to test your components with Jest!
Yes! I've never had the chance to use react-testing-library but I've heard good things about that one as well.