File tree 3 files changed +5
-7
lines changed
3 files changed +5
-7
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ Render.prototype.begin = function () {
24
24
25
25
Render . prototype . push = function ( t ) {
26
26
var self = this ;
27
- this . emit ( 'data' , Array ( t . indent + 1 ) . join ( ' ' ) + '# ' + t . name + '\n' ) ;
27
+ this . emit ( 'data' , '# ' + t . name + '\n' ) ;
28
28
29
29
t . on ( 'result' , function ( res ) {
30
30
self . emit ( 'data' , encodeResult ( res , self . count + 1 ) ) ;
@@ -50,7 +50,7 @@ Render.prototype.close = function () {
50
50
} ;
51
51
52
52
function encodeResult ( res , count ) {
53
- var output = Array ( res . indent + 1 ) . join ( ' ' ) ;
53
+ var output = '' ;
54
54
output += ( res . ok ? 'ok ' : 'not ok ' ) + count ;
55
55
output += res . name ? ' ' + res . name . replace ( / \s + / g, ' ' ) : '' ;
56
56
@@ -60,7 +60,7 @@ function encodeResult (res, count) {
60
60
output += '\n' ;
61
61
62
62
if ( ! res . ok ) {
63
- var outer = Array ( res . indent + 3 ) . join ( ' ' ) ;
63
+ var outer = ' ' ;
64
64
var inner = outer + ' ' ;
65
65
output += outer + '---\n' ;
66
66
output += inner + 'operator: ' + res . operator + '\n' ;
Original file line number Diff line number Diff line change @@ -12,7 +12,6 @@ function Test (name, opts) {
12
12
13
13
this . name = name || '(anonymous)' ;
14
14
this . assertCount = 0 ;
15
- this . indent = opts . indent || 0 ;
16
15
}
17
16
18
17
Test . prototype . test = function ( name , cb ) {
@@ -23,7 +22,7 @@ Test.prototype.test = function (name, cb) {
23
22
name = '(anonymous)' ;
24
23
}
25
24
26
- var t = new Test ( name , { indent : self . indent + 2 } ) ;
25
+ var t = new Test ( name ) ;
27
26
t . run = function ( ) { cb ( t ) } ;
28
27
self . emit ( 'test' , t ) ;
29
28
} ;
@@ -55,7 +54,6 @@ Test.prototype._assert = function assert (ok, opts) {
55
54
56
55
var res = {
57
56
id : self . assertCount ++ ,
58
- indent : self . indent ,
59
57
ok : Boolean ( ok ) ,
60
58
skip : defined ( extra . skip , opts . skip ) ,
61
59
name : defined ( extra . message , opts . message , '(unnamed assert)' ) ,
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ tap.test('array test', function (tt) {
25
25
{ id : 3 , ok : true , name : 'should be equivalent' } ,
26
26
{ id : 4 , ok : true , name : 'should be equivalent' } ,
27
27
{ id : 5 , ok : true , name : 'should be equivalent' } ,
28
- '# inside test' ,
28
+ 'inside test' ,
29
29
{ id : 6 , ok : true , name : '(unnamed assert)' } ,
30
30
{ id : 7 , ok : true , name : '(unnamed assert)' } ,
31
31
'another' ,
You can’t perform that action at this time.
0 commit comments