Skip to content

Commit 53ab0e8

Browse files
author
James Halliday
committed
basic tap output works
1 parent 31dae7d commit 53ab0e8

File tree

3 files changed

+23
-8
lines changed

3 files changed

+23
-8
lines changed

lib/defined.js

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
module.exports = function () {
2+
for (var i = 0; i < arguments.length; i++) {
3+
if (arguments[i] !== undefined) return arguments[i];
4+
}
5+
};

lib/render.js

+17-2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ module.exports = Render;
55
function Render () {
66
Stream.call(this);
77
this.readable = true;
8+
this.count = 0;
89
}
910

1011
Render.prototype = new Stream;
@@ -14,11 +15,25 @@ Render.prototype.begin = function () {
1415
};
1516

1617
Render.prototype.push = function (t) {
18+
var self = this;
1719
t.on('result', function (res) {
18-
console.dir(res);
20+
self.emit('data', encodeResult(res, self.count + 1));
21+
self.count ++;
1922
});
2023
};
2124

2225
Render.prototype.close = function () {
23-
console.log('__END__');
26+
this.emit('end');
2427
};
28+
29+
function encodeResult (res, count) {
30+
var output = '';
31+
output += (res.ok ? 'ok ' : 'not ok ') + count;
32+
output += res.name ? ' ' + res.name.replace(/\s+/g, ' ') : '';
33+
34+
if (res.skip) output += ' # SKIP';
35+
else if (res.todo) output += ' # TODO';
36+
37+
output += '\n';
38+
return output;
39+
}

lib/test.js

+1-6
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
var EventEmitter = require('events').EventEmitter;
22
var deepEqual = require('deep-equal');
3+
var defined = require('./defined');
34

45
module.exports = Test;
56

@@ -227,9 +228,3 @@ Test.prototype.doesNotThrow = function (fn, expected, msg, extra) {
227228
extra : extra
228229
});
229230
};
230-
231-
function defined () {
232-
for (var i = 0; i < arguments.length; i++) {
233-
if (arguments[i] !== undefined) return arguments[i];
234-
}
235-
}

0 commit comments

Comments
 (0)