Bookmarks tagged [code-coverage]
https://pypi.python.org/pypi/coverage
Code coverage measurement.
- tags: python, testing, code-coverage
https://www.atlassian.com/software/clover/overview
Relies on source-code instrumentation instead of bytecode instrumentation.
- tags: java, code-coverage
https://cobertura.github.io/cobertura
Relies on offline (or static) bytecode instrumentation and class loading to collect code coverage metrics.
- tags: java, code-coverage
Framework that enables collection of code coverage metrics, using both offline and runtime bytecode instrumentation.
- tags: java, code-coverage
http://azimi.me/2016/09/30/nyc-mocha-typescript.1.html
package.json
+ mocha.opts
configuration to get mocha and instanbul running with typescript
- 📆 published on: 2016-09-30
- tags: node.js, unit-testing, mocha, instanbul, code-coverage, typescript
https://istanbul.js.org/docs/tutorials/typescript/
Thanks to @mohsen1's post the following is the minimum recommended configuration to get accurate TypeScript coverage with mocha. With this…
- tags: node.js, unit-testing, mocha, instanbul, code-coverage