-
Notifications
You must be signed in to change notification settings - Fork 12k
New issue
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
Jasmine HTML report not displayed when code coverage enabled during test #5136
Comments
From what I can see this is a simple fix in the generated projects --- a/karma.conf.js
+++ b/karma.conf.js
@@ -32,7 +32,7 @@ module.exports = function (config) {
environment: 'dev'
},
reporters: config.angularCli && config.angularCli.codeCoverage
- ? ['progress', 'coverage-istanbul']
+ ? ['progress', 'coverage-istanbul', 'kjhtml']
: ['progress', 'kjhtml'],
port: 9876,
colors: true,
|
…e report kjhtml reporter now displays when testing with code coverage report generation Close angular#5136
@Zyzle, I don't believe it will have any issues. Thanks for the PR! |
I pulled the plug on this one because it's a change in the output of the CLI and will have to wait until at least 1.1. Will keep the issue open as something work on. |
Fixed in #6160. |
This issue has been automatically locked due to inactivity. Read more about our automatic conversation locking policy. This action has been performed automatically by a bot. |
OS?
OSX Yosemite
Versions.
Repro steps.
npm test
app works!
npm test -- --code-coverage
app works!
is displayedThe log given by the failure.
N/A
Mention any other details that might be useful.
The text was updated successfully, but these errors were encountered: