Code Coverage #1821
Replies: 2 comments
-
The point behind adding code coverage is to be useful insight for developers making changes as needed, and not as some target or CI check. The main ways I envision using it are comparing branch coverage to main as a quick sanity check for test changes or checking that tests on a new feature cover what I think it does. The latter can easily be handled locally by just adding the |
Beta Was this translation helpful? Give feedback.
-
We decided here that we should simply add a new command to run jest with args to generate coverage #1830 (comment) and not worry about tracking coverage changes against main. |
Beta Was this translation helpful? Give feedback.
-
Make a time-boxed attempt at adding code coverage from our jest tests. Solution should:
Beta Was this translation helpful? Give feedback.
All reactions