Skip to content

Commit 78b4d98

Browse files
ryanhamleyljharb
authored andcommitted
[New] Include name of test in log when test times out (#524)
1 parent d0286f4 commit 78b4d98

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ Test.prototype.timeoutAfter = function (ms) {
136136
if (!ms) throw new Error('timeoutAfter requires a timespan');
137137
var self = this;
138138
var timeout = safeSetTimeout(function () {
139-
self.fail('test timed out after ' + ms + 'ms');
139+
self.fail(self.name + ' timed out after ' + ms + 'ms');
140140
self.end();
141141
}, ms);
142142
this.once('end', function () {

test/timeoutAfter.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ tap.test('timeoutAfter test', function (tt) {
1212
tt.same(stripFullStack(rows.toString('utf8')), [
1313
'TAP version 13',
1414
'# timeoutAfter',
15-
'not ok 1 test timed out after 1ms',
15+
'not ok 1 timeoutAfter timed out after 1ms',
1616
' ---',
1717
' operator: fail',
1818
' stack: |-',
19-
' Error: test timed out after 1ms',
19+
' Error: timeoutAfter timed out after 1ms',
2020
' [... stack stripped ...]',
2121
' ...',
2222
'',

0 commit comments

Comments
 (0)