Skip to content

Commit 8ce12a5

Browse files
committed
[test] Add fixtures for supress-stdout test
1 parent 50052f5 commit 8ce12a5

File tree

1 file changed

+16
-0
lines changed

1 file changed

+16
-0
lines changed
+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
var vows = require('../../../lib/vows'),
2+
assert = require('assert');
3+
4+
vows.describe('output').addBatch({
5+
'outputting': {
6+
topic: function () {
7+
console.log('goo');
8+
this.callback(null, true);
9+
},
10+
'should work': function (result) {
11+
console.log('goo');
12+
assert.ok(result);
13+
}
14+
},
15+
}).export(module);
16+

0 commit comments

Comments
 (0)