Skip to content

Commit b6f5aaf

Browse files
committed
Use lib directory instead of package root for stacktrace checking
1 parent de7f4fa commit b6f5aaf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/test.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ Test.prototype._assert = function assert (ok, opts) {
216216
if (!ok) {
217217
var e = new Error('exception');
218218
var err = (e.stack || '').split('\n');
219-
var dir = path.dirname(__dirname) + path.sep;
219+
var dir = __dirname + path.sep;
220220

221221
for (var i = 0; i < err.length; i++) {
222222
var m = /^[^\s]*\s*\bat\s+(.+)/.exec(err[i]);

0 commit comments

Comments
 (0)