fix(test-runner): make karma internal reporter compatible with 0.13.20 (#8977)

causes internal reporter to produce output messages again after upgrade to 0.13.20
This commit is contained in:
Hannah Howard 2016-06-03 10:48:55 -07:00 committed by Miško Hevery
parent 76e6214b9b
commit fe8a7b0e82
1 changed files with 1 additions and 1 deletions

View File

@ -52,7 +52,7 @@ var createErrorFormatter = function (basePath, emitter, SourceMapConsumer) {
var InternalAngularReporter = function (config, emitter) {
var formatter = createErrorFormatter(config.basePath, emitter, SourceMapConsumer);
DotsReporter.call(this, formatter, false)
DotsReporter.call(this, formatter, false, config.colors)
}
InternalAngularReporter.$inject = ['config', 'emitter']