Adam Nicol

I've recently implemented Codecov to help me track the code coverage for my unit tests. This tool allows me to see how much of my code is being tested. To integrate Codecov into my development workflow I've set up a CI pipeline using Github actions. Whenever I push my code to Github, the pipeline runs my unit tests and uploads the coverage report to Codecov. Right now my code coverage is at 12% so there's still a lot of room for improvement, but I plan to work on this in the future. For the unit tests themselves I use a combination of Jest and the React testing framework which so far has been working well.


1Like Post1SharePosted 2 years ago

Comments

avatar