ember-cli-code-coverage
ember-cli-code-coverage copied to clipboard
Code coverage for ember apps using Istanbul
### Purpose It took me a while to find where the coverage files existed. I was sure I had misconfigured it so i was reading through the README expecting it...
How to Exclude app files from ember engine? Please help to suggest. excludes: [ "*/app/**/*", ], "ember-cli-code-coverage": "1.0.3", "ember-cli": "3.8.3",
Adding a failing test for https://github.com/kategengler/ember-cli-code-coverage/issues/309#issuecomment-1035796391 An issue we are having also.
https://github.com/felixrieseberg/ember-electron/issues/259 @anulman There are two issues that need to be resolved to get this working. 1) ember-electron redefines `require` and thus breaks ember-cli-code-coverage. if ember-cli-code-coverage were to use requireModule instead...
My ember cli version is 3.0.4 and node version is 8.12.0. I had created a sample demo application with ember cli and created a ember component using ember cli. I...
This appeared when upgrading from v2.0.0-beta.1 to v2.0.0-beta.2 and consequent versions. We're using ember-cli at 3.23.0. This [issue](https://github.com/kategengler/ember-cli-code-coverage/pull/82), seems to be similar although pretty old. I haven't dived into it...
In order to lower our CI costs, we're building once and sharing that build across multiple partition test runs (via ember exam). All seems to work fine, but the `lcov.info`...
Is there a way to fail the test run if the coverage is below a certain threshold? Is there a way to print the high-level coverage summary after the test...
Env: ``` "ember-cli-code-coverage": "1.0.3", "ember-cli-typescript": "^4.2.1", ``` `COVERAGE=true ember t` works fine and generates accurate coverage reports. But I want to configure my CI workflow with pre-built dist and run...
First of all, thanks a lot for the v2 refactor! It must be much more efficient because the build time of our large app in CI went down by many...