Skip to content

Commit fc3fd51

Browse files
committed
Disable progress and ANSI output
1 parent 8dd32ca commit fc3fd51

File tree

2 files changed

+31
-5
lines changed

2 files changed

+31
-5
lines changed

index.js

+13-5
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1+
var showAnsi = false
2+
var showProgress = false
3+
14
var through = require('through2')
25
var duplexer = require('duplexer2')
36
var parser = require('tap-out')
4-
var format = require('ansi-escape')
7+
var format = showAnsi ? require('ansi-escape') : require('./no-ansi')
58
var symbols = require('figures')
69
var prettyMs = require('pretty-ms')
710
var LF = '\n'
@@ -29,17 +32,23 @@ module.exports = function () {
2932
},
3033
start: new Date(),
3134
}
32-
output.push(LF + format.cha.eraseLine.escape('# ' + test.title))
35+
if (showProgress) {
36+
output.push(LF + format.cha.eraseLine.escape('# ' + test.title))
37+
}
3338
})
3439

3540
tap.on('pass', function () {
3641
++test.pass
37-
output.push(format.cha.eraseLine.escape('# ' + test.title))
42+
if (showProgress) {
43+
output.push(format.cha.eraseLine.escape('# ' + test.title))
44+
}
3845
})
3946

4047
tap.on('fail', function () {
4148
++test.fail
42-
output.push(format.cha.eraseLine.escape('# ' + test.title))
49+
if (showProgress) {
50+
output.push(format.cha.eraseLine.escape('# ' + test.title))
51+
}
4352
})
4453

4554
tap.on('output', function (res) {
@@ -163,4 +172,3 @@ function prettifyError(assertion) {
163172
}
164173
return format.cyan.escape(ret.join(LF))
165174
}
166-

no-ansi.js

+18
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
var LF = '\n'
2+
3+
var escapes = require('ansi-escape/lib/escapes')
4+
var colors = require('ansi-escape/lib/colors')
5+
6+
var escape = function (x) { return x }
7+
8+
Object.keys(colors).forEach(function (key) {
9+
escape[key] = escape
10+
})
11+
12+
Object.keys(escapes).forEach(function (key) {
13+
escape[key] = escape
14+
})
15+
16+
escape.eraseLine.escape = function (x) { return x + LF}
17+
18+
module.exports = escape

0 commit comments

Comments
 (0)