We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I really like tap's --100 flag. Could we add something similar to c8? It would turn
tap
--100
c8
c8 --check-coverage --lines 100 --functions 100 --branches 100 --statements 100 node test.js
into
c8 --100 node test.js
The text was updated successfully, but these errors were encountered:
@gr2m I like this idea 👍
Sorry, something went wrong.
@bcoe I'm not quite sure how the --check-coverage parameter works.
--check-coverage
I we want support both
c8 check-coverage --100
c8 --100 npm test
but I'm not sure how. I tried to use yargs.middleware() but the code does not seem to be executed at all. See my WIP PR at #332
yargs.middleware()
Successfully merging a pull request may close this issue.
I really like
tap
's--100
flag. Could we add something similar toc8
? It would turninto
The text was updated successfully, but these errors were encountered: