Skip to content

Commit 6546552

Browse files
author
cloudhead
committed
don't try to exist when tests complete
1 parent 7edb97a commit 6546552

File tree

1 file changed

+0
-7
lines changed

1 file changed

+0
-7
lines changed

lib/vows/suite.js

-7
Original file line numberDiff line numberDiff line change
@@ -243,15 +243,8 @@ this.Suite.prototype = new(function () {
243243
}
244244
} else {
245245
that.results.time = (new(Date) - start) / 1000;
246-
247246
that.report(['finish', that.results]);
248-
249247
if (callback) { callback(that.results) }
250-
251-
// Don't exit until stdout is empty
252-
process.stdout.addListener('drain', function () {
253-
process.exit(that.results.broken || that.results.errored ? 1 : 0);
254-
});
255248
}
256249
})(this.batches.slice(0));
257250
};

0 commit comments

Comments
 (0)