File tree 2 files changed +7
-7
lines changed
2 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -122,9 +122,9 @@ tap.test('async5', function (t) {
122
122
'ok 2 after server' ,
123
123
'ok 3 before request' ,
124
124
'ok 4 after request' ,
125
- 'ok 5 should be equal ' ,
126
- 'ok 6 should be equal ' ,
127
- 'ok 7 undefined ' ,
125
+ 'ok 5 res.statusCode is 200 ' ,
126
+ 'ok 6 mockDb.state is new ' ,
127
+ 'ok 7 error on close ' ,
128
128
'not ok 8 .end() called twice' ,
129
129
' ---' ,
130
130
' operator: fail' ,
Original file line number Diff line number Diff line change @@ -40,18 +40,18 @@ test('async5', async function myTest(t) {
40
40
t . ok ( true , 'after request' ) ;
41
41
42
42
res . resume ( ) ;
43
- t . equal ( res . statusCode , 200 ) ;
43
+ t . equal ( res . statusCode , 200 , 'res.statusCode is 200' ) ;
44
44
45
45
setTimeout ( function ( ) {
46
- t . equal ( mockDb . state , 'new' ) ;
46
+ t . equal ( mockDb . state , 'new' , 'mockDb.state is new' ) ;
47
47
48
48
server . close ( function ( err ) {
49
- t . ifError ( err ) ;
49
+ t . ifError ( err , 'error on close' ) ;
50
50
t . end ( ) ;
51
51
} ) ;
52
52
} , 50 ) ;
53
53
} catch ( err ) {
54
- t . ifError ( err ) ;
54
+ t . ifError ( err , 'error in catch' ) ;
55
55
t . end ( ) ;
56
56
}
57
57
} ) ;
You can’t perform that action at this time.
0 commit comments