UNPKG

jaribu

Version:

a simple, full-featured, JavaScript testing framework

48 lines (46 loc) 1.12 kB
/** * Function: result * * Handler function to set the tests internal result status * * Parameters: * * r - result true/false * message - optional test to be displayed with the failure * trace - optional stack trace * * Returns: * * return result */ if (typeof define !== 'function') { var define = require('amdefine')(module); } define([], function () { var result = function (r, message, trace) { if (typeof(this._result) !== 'undefined') { return this._result; } if (r !== undefined) { // received test result this._result = r; } if (message !== undefined) { this._message = message; } if (trace !== undefined) { this._stackTrace = trace; } else { if ((typeof r === 'boolean') && (r === false)) { this._generatingStackTrace = true; try { throw new Error(); } catch (e) { this._generatingStackTrace = false; this._stackTrace = e.stack; } } } if (typeof this._result === 'boolean') { this._running = false; } return this._result; }; return result; });