Sha256: 9b64b733d0620e646cb3f09d2b55da2c2cff1d3181d1efeeba76ac5f90a10863
Contents?: true
Size: 472 Bytes
Versions: 36
Compression:
Stored size: 472 Bytes
Contents
/** * Module dependencies. */ var Runnable = require('./runnable'); /** * Expose `Test`. */ module.exports = Test; /** * Initialize a new `Test` with the given `title` and callback `fn`. * * @param {String} title * @param {Function} fn * @api private */ function Test(title, fn) { Runnable.call(this, title, fn); this.pending = !fn; this.type = 'test'; } /** * Inherit from `Runnable.prototype`. */ Test.prototype.__proto__ = Runnable.prototype;
Version data entries
36 entries across 36 versions & 1 rubygems