source: trip-planner-front/node_modules/karma/lib/reporters/dots_color.js@ 188ee53

Last change on this file since 188ee53 was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 387 bytes
Line 
1const DotsReporter = require('./dots')
2const BaseColorReporter = require('./base_color')
3
4function DotsColorReporter (formatError, reportSlow, useColors, browserConsoleLogOptions) {
5 DotsReporter.call(this, formatError, reportSlow, useColors, browserConsoleLogOptions)
6 BaseColorReporter.call(this)
7 this.EXCLUSIVELY_USE_COLORS = true
8}
9
10// PUBLISH
11module.exports = DotsColorReporter
Note: See TracBrowser for help on using the repository browser.