Skip to content

Commit bd76254

Browse files
committed
[Tests] improve some failure output by adding messages
1 parent 1a59e0b commit bd76254

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

test/async-await.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -122,9 +122,9 @@ tap.test('async5', function (t) {
122122
'ok 2 after server',
123123
'ok 3 before request',
124124
'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',
128128
'not ok 8 .end() called twice',
129129
' ---',
130130
' operator: fail',

test/async-await/async5.js

+4-4
Original file line numberDiff line numberDiff line change
@@ -40,18 +40,18 @@ test('async5', async function myTest(t) {
4040
t.ok(true, 'after request');
4141

4242
res.resume();
43-
t.equal(res.statusCode, 200);
43+
t.equal(res.statusCode, 200, 'res.statusCode is 200');
4444

4545
setTimeout(function () {
46-
t.equal(mockDb.state, 'new');
46+
t.equal(mockDb.state, 'new', 'mockDb.state is new');
4747

4848
server.close(function (err) {
49-
t.ifError(err);
49+
t.ifError(err, 'error on close');
5050
t.end();
5151
});
5252
}, 50);
5353
} catch (err) {
54-
t.ifError(err);
54+
t.ifError(err, 'error in catch');
5555
t.end();
5656
}
5757
});

0 commit comments

Comments
 (0)