1234567891011121314151617181920212223242526272829303132 |
- /**
- * 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;
|