1234567891011121314151617181920 |
- var aps = Array.prototype.slice;
- doh.debug = function () {
-
- var msg = aps.call(arguments, 0).join(' ');
- console.log(msg);
- };
- var oldReport = doh._report;
- doh._report = function () {
- oldReport.apply(doh, arguments);
- if (this._failureCount > 0 || this._errorCount > 0) {
- process.exit(1);
- }
- };
|