Bug:Fix file validation issue
[vnfsdk/refrepo.git] / vnfmarket / src / main / webapp / vnfmarket / node_modules / karma / lib / reporters / base_color.js
1 require('colors')
2
3 var BaseColorReporter = function () {
4   this.USE_COLORS = true
5
6   this.LOG_SINGLE_BROWSER = '%s: ' + '%s'.cyan + '\n'
7   this.LOG_MULTI_BROWSER = '%s %s: ' + '%s'.cyan + '\n'
8
9   this.SPEC_FAILURE = '%s %s FAILED'.red + '\n'
10   this.SPEC_SLOW = '%s SLOW %s: %s'.yellow + '\n'
11   this.ERROR = '%s ERROR'.red + '\n'
12
13   this.FINISHED_ERROR = ' ERROR'.red
14   this.FINISHED_SUCCESS = ' SUCCESS'.green
15   this.FINISHED_DISCONNECTED = ' DISCONNECTED'.red
16
17   this.X_FAILED = ' (%d FAILED)'.red
18
19   this.TOTAL_SUCCESS = 'TOTAL: %d SUCCESS'.green + '\n'
20   this.TOTAL_FAILED = 'TOTAL: %d FAILED, %d SUCCESS'.red + '\n'
21 }
22
23 // PUBLISH
24 module.exports = BaseColorReporter