Skip to content

Commit ec4a71d

Browse files
marques-workljharb
authored andcommitted
[fix] Fix bug in functionName regex during stack parsing
Previously, this line was splitting on the letter 's'; more likely, it was meant to split on spaces.
1 parent 7261ccc commit ec4a71d

File tree

2 files changed

+38
-2
lines changed

2 files changed

+38
-2
lines changed

lib/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -282,7 +282,7 @@ Test.prototype._assert = function assert (ok, opts) {
282282

283283
// Function call description may not (just) be a function name.
284284
// Try to extract function name by looking at first "word" only.
285-
res.functionName = callDescription.split(/s+/)[0]
285+
res.functionName = callDescription.split(/\s+/)[0]
286286
res.file = filePath;
287287
res.line = Number(m[3]);
288288
if (m[4]) res.column = Number(m[4]);

test/stackTrace.js

+37-1
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,42 @@ tap.test('preserves stack trace with newlines', function (tt) {
6868
});
6969
});
7070

71+
tap.test('parses function name from original stack', function (tt) {
72+
tt.plan(1);
73+
74+
var test = tape.createHarness();
75+
test.createStream();
76+
77+
test._results._watch = function (t) {
78+
t.on('result', function (res) {
79+
tt.equal('Test.testFunctionNameParsing', res.functionName)
80+
});
81+
};
82+
83+
test('t.equal stack trace', function testFunctionNameParsing(t) {
84+
t.equal(true, false, 'true should be false');
85+
t.end();
86+
});
87+
});
88+
89+
tap.test('parses function name from original stack for anonymous function', function (tt) {
90+
tt.plan(1);
91+
92+
var test = tape.createHarness();
93+
test.createStream();
94+
95+
test._results._watch = function (t) {
96+
t.on('result', function (res) {
97+
tt.equal('Test.<anonymous>', res.functionName)
98+
});
99+
};
100+
101+
test('t.equal stack trace', function (t) {
102+
t.equal(true, false, 'true should be false');
103+
t.end();
104+
});
105+
});
106+
71107
tap.test('preserves stack trace for failed assertions', function (tt) {
72108
tt.plan(6);
73109

@@ -214,4 +250,4 @@ function getDiag (body) {
214250

215251
function stripAt (body) {
216252
return body.replace(/^\s*at:\s+Test.*$\n/m, '');
217-
}
253+
}

0 commit comments

Comments
 (0)