I am able to generate code coverage reports using c8.
But how do I output total coverage % every time? Currently, it outputs total coverage % only if it is less than the threshold like this.
But I wanted to see the % every time it runs.
Config :
{
"include": "app",
"check-coverage": true,
"lines": 99,
"reporter": ["text","cobertura"]
}
I just needed to add "text-summary" as one of the reporters.
"reporter": ["text","text-summary","cobertura"]