ember-cli-code-coverage
ember-cli-code-coverage copied to clipboard
Code coverage for ember apps using Istanbul
Supersedes: https://github.com/kategengler/ember-cli-code-coverage/pull/103 Text from that PR: > This PR adds support for instrumentation of templates roughly the same as JS instrumentation (using a custom set of helpers and a template...
This PR adds a command `ember test-code-coverage`. This can be used e.g. in CI environments. The command can also be used to simply print out the total coverage percentages, e.g....
This PR adds an `include` option to the config hash that will allow users to include additional coverage to the output. My current setup is as follows: - I have...
```js check: { global: { statements: 0, lines: 0, branches: 0, functions: 0, excludes: [] } each: { statements: 0, lines: 0, branches: 0, functions: 0, excludes: [] } }...
We have a folder with 10 helpers, 6 of them are displayed as not being covered even though they are. Does anyone have any ideas as to why this might...
Now that we are requiring all files, issues like #65, #66, and #75 are popping up, and the problem may not be immediately clear. We also have files we want...
Hi Katie! Thanks for an amazing ember addon! Recently we successfully integrated it with our application but in order to generate the report, we have to do one manual change...
Haven't had too much time to dig into it, but the write coverage endpoint seems to be blocked when using ember-cli-content-security-policy >= 1.1.1. Might be enough to document the CSP...
If you enable babel sourceMaps in your `ember-cli-build.js` and run `COVERAGE=true ember serve/test` you get bunch of errors: ``` Unable to cover: app/app.js . Newer JS features may need Babel...
This may or may not be related to #407, except that issue has a fix and I've tested with the fixed version of ember-cli-code-coverage to confirm the issue I'm reporting....