karma-runner/karma

View on GitHub
lib/reporters/progress_color.js

Summary

Maintainability
A
50 mins
Test Coverage
const ProgressReporter = require('./progress')
const BaseColorReporter = require('./base_color')

function ProgressColorReporter (formatError, reportSlow, useColors, browserConsoleLogOptions) {
  ProgressReporter.call(this, formatError, reportSlow, useColors, browserConsoleLogOptions)
  BaseColorReporter.call(this)
  this.EXCLUSIVELY_USE_COLORS = true
}

// PUBLISH
module.exports = ProgressColorReporter