blob: 64a2f10e7a5b1a4625556568394e33e0b0804a98 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
/**
* 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;
/**
* Inspect the context void of private properties.
*
* @return {String}
* @api private
*/
Test.prototype.inspect = function(){
return JSON.stringify(this, function(key, val){
return '_' == key[0]
? undefined
: 'parent' == key
? '#<Suite>'
: val;
}, 2);
};
|