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
The example:
coverageReporter: { reporters:[ {type: 'html', dir:'somedir/'}, {type: 'teamcity'}, {type: 'text-summary'} ], }
Does not output html to somedir/, I think because of https://github.com/karma-runner/karma-coverage/blob/master/lib/reporter.js#L44 which only takes into account the directory of the coverageReporter object.
somedir/
coverageReporter
So if you specify as follows:
coverageReporter: { dir:'somedir/', reporters:[ {type: 'html'}, {type: 'teamcity'}, {type: 'text-summary'} ], }
HTML will be output to somedir/. Of course, this means that you can't have different directories for each reporter, so I think this is a bug.
The text was updated successfully, but these errors were encountered:
FIXED issue karma-runner#42 - Output directory not being used per rep…
aa86a5a
…orter
dac4678
Merge pull request #43 from kombucha/issue-#42-output-directory
9cdeac9
FIXED issue #42 - Output directory not being used per reporter
No branches or pull requests
The example:
Does not output html to
somedir/
, I think because of https://github.com/karma-runner/karma-coverage/blob/master/lib/reporter.js#L44 which only takes into account the directory of thecoverageReporter
object.So if you specify as follows:
HTML will be output to
somedir/
. Of course, this means that you can't have different directories for each reporter, so I think this is a bug.The text was updated successfully, but these errors were encountered: