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
For better support of babel, and for simpler setup, we are now using https://github.com/istanbuljs/nyc in several of our services.
We could update this boilerplate so it will be set already for future modules.
How to set it up:
package.json
"mocha": "NODE_ENV=test mocha --timeout 10000 --compilers babel-register --recursive $(find src -name __test__ -not -path '*/node_modules/*')", "test": "NODE_ENV=test nyc --reporter=lcov --reporter=text-summary --reporter=html npm run mocha", "cov-check": "nyc check-coverage --statements 80 --branches 70 --functions 60", "cov-report-html": "open coverage/index.html", "cov-report-text": "nyc report"
babel-istanbul
istanbul
.baberc
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For better support of babel, and for simpler setup, we are now using https://github.com/istanbuljs/nyc in several of our services.
We could update this boilerplate so it will be set already for future modules.
How to set it up:
package.json
scripts with the following linesbabel-istanbul
dependencyistanbul
plugin in.baberc
fileThe text was updated successfully, but these errors were encountered: