covermy
v0.2.4
Published
show uncovered lines that were edited by you that are in files changed in your current branch/pull
Downloads
11
Readme
covermy
show lines that have been changed by you that are not covered, that you are trying to merge to master
| Prop | Default | Optional | Description | |------------------|------------------|------------------|------------------| |generate|false|yes|generate coverage report| |info|uses find|yes|path to lcov.info| |verbose|false|yes|show code for uncovered line| |whoami|false|yes|specifies a user other than the current git config user|
return: std.out
install:
yarn
yarn add --dev covermy
or npm
npm install --dev covermy
then add
"covermy": "covermy",
to the "scripts"
section of your package.json
usage:
yarn
yarn covermy
or npm
npm run covermy
yarn with flags
yarn covermy --generate --verbose --info "path/to/lcov.info"
is the same as
yarn covermy -G -V -I "path/to/lcov.info"