Skip to content

Commit 88de699

Browse files
author
James Halliday
committed
special case for exiting, all tests pass now
1 parent 72e34ad commit 88de699

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

lib/test.js

+9-3
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,14 @@ Test.prototype._exit = function () {
100100
this._planError = true;
101101
this.fail('plan != count', {
102102
expected : this._plan,
103-
actual : this.assertCount
103+
actual : this.assertCount,
104+
exiting : true
104105
});
105106
}
106107
else if (!this.ended) {
107-
this.fail('test exited without ending');
108+
this.fail('test exited without ending', {
109+
exiting: true
110+
});
108111
}
109112
};
110113

@@ -152,7 +155,10 @@ Test.prototype._assert = function assert (ok, opts) {
152155

153156
self.emit('result', res);
154157

155-
if (self._plan === self.assertCount) {
158+
if (self._plan === self.assertCount && extra.exiting) {
159+
if (!self.ended) self.end();
160+
}
161+
else if (self._plan === self.assertCount) {
156162
nextTick(function () {
157163
if (!self.ended) self.end();
158164
});

0 commit comments

Comments
 (0)