-
Notifications
You must be signed in to change notification settings - Fork 1.7k
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
TypeError with io.js v2.3.0 #1454
Comments
Thanks, could you provide the full |
Actually this bug related to karma-html-reporter, I've created issue in theirs repo. It could be easily fixed by adding empty writeStream = fs.createWriteStream(reportFile , {}, function(err) {
if (err) {
log.warn('Cannot write HTML Report\n\t' + err.message);
} else {
log.debug('HTML report written to "%s".', reportFile);
}
}); But I've think its an issue with new version of io.js v2.3.0, I will rise a new bug in theirs repo too. |
Thanks. It looks like it generated quite the discussion on the iojs repo. I will close this issue as there is nothing we can do from this side. |
Just for the reference: this is not an io.js bug, it's a bug in It looks like the idea of placing a work-around for such errors in io.js did not receive any support, and this is not going to be fixed on the io.js side. The proper solution would be to merge dtabuenc/karma-html-reporter#27 into |
The text was updated successfully, but these errors were encountered: