Skip to content

Commit b6ac9bf

Browse files
author
James Halliday
committed
omit expected and actual if there is no actual or expected
1 parent 45add17 commit b6ac9bf

File tree

2 files changed

+28
-15
lines changed

2 files changed

+28
-15
lines changed

lib/results.js

+16-10
Original file line numberDiff line numberDiff line change
@@ -141,16 +141,18 @@ function encodeResult (res, count) {
141141
output += outer + '---\n';
142142
output += inner + 'operator: ' + res.operator + '\n';
143143

144-
var ex = inspect(res.expected);
145-
var ac = inspect(res.actual);
146-
147-
if (Math.max(ex.length, ac.length) > 65) {
148-
output += inner + 'expected:\n' + inner + ' ' + ex + '\n';
149-
output += inner + 'actual:\n' + inner + ' ' + ac + '\n';
150-
}
151-
else {
152-
output += inner + 'expected: ' + ex + '\n';
153-
output += inner + 'actual: ' + ac + '\n';
144+
if (has(res, 'expected') || has(res, 'actual')) {
145+
var ex = inspect(res.expected);
146+
var ac = inspect(res.actual);
147+
148+
if (Math.max(ex.length, ac.length) > 65) {
149+
output += inner + 'expected:\n' + inner + ' ' + ex + '\n';
150+
output += inner + 'actual:\n' + inner + ' ' + ac + '\n';
151+
}
152+
else {
153+
output += inner + 'expected: ' + ex + '\n';
154+
output += inner + 'actual: ' + ac + '\n';
155+
}
154156
}
155157
if (res.at) {
156158
output += inner + 'at: ' + res.at + '\n';
@@ -181,3 +183,7 @@ function getNextTest (results) {
181183
}
182184
} while (results.tests.length !== 0)
183185
}
186+
187+
function has (obj, prop) {
188+
return Object.prototype.hasOwnProperty.call(obj, prop);
189+
}

lib/test.js

+12-5
Original file line numberDiff line numberDiff line change
@@ -109,11 +109,10 @@ Test.prototype.end = function (err) {
109109
};
110110

111111
Test.prototype._end = function (err) {
112+
var self = this;
112113
if (this._progeny.length) {
113114
var t = this._progeny.shift();
114-
t.on('end', function () {
115-
self._end();
116-
});
115+
t.on('end', function () { self._end() });
117116
t.run();
118117
return;
119118
}
@@ -166,9 +165,13 @@ Test.prototype._assert = function assert (ok, opts) {
166165
skip : defined(extra.skip, opts.skip),
167166
name : defined(extra.message, opts.message, '(unnamed assert)'),
168167
operator : defined(extra.operator, opts.operator),
169-
actual : defined(extra.actual, opts.actual),
170-
expected : defined(extra.expected, opts.expected)
171168
};
169+
if (has(opts, 'actual') || has(extra, 'actual')) {
170+
res.actual = defined(extra.actual, opts.actual);
171+
}
172+
if (has(opts, 'expected') || has(extra, 'expected')) {
173+
res.expected = defined(extra.expected, opts.expected);
174+
}
172175
this._ok = Boolean(this._ok && ok);
173176

174177
if (!ok) {
@@ -436,4 +439,8 @@ Test.prototype.doesNotThrow = function (fn, expected, msg, extra) {
436439
});
437440
};
438441

442+
function has (obj, prop) {
443+
return Object.prototype.hasOwnProperty.call(obj, prop);
444+
}
445+
439446
// vim: set softtabstop=4 shiftwidth=4:

0 commit comments

Comments
 (0)