rehansaeed.github.io icon indicating copy to clipboard operation
rehansaeed.github.io copied to clipboard

[Comment] Code Coverage & Frontend Testing

Open RehanSaeed opened this issue 4 years ago • 2 comments

https://rehansaeed.com/code-coverage-and-frontend-testing/

RehanSaeed avatar May 10 '21 10:05 RehanSaeed

Good article.

I just wanted to point out something for anyone reading who might have added coverage reporting to their jest tests and been surprised by a relatively high coverage amount:

By default jest only checks the coverage of files that are imported (directly or indirectly) by the files under test.

To check coverage of all your source files you must tell jest which paths to collect coverage from using collectCoverageFrom.

codeandcats avatar May 11 '21 21:05 codeandcats

@codeandcats Good top tip!

RehanSaeed avatar May 12 '21 08:05 RehanSaeed