Home | History | Annotate | Download | only in mocha

Lines Matching refs:Stringify

874   return JSON.stringify(this, function(key, val){
2169 err.actual = actual = utils.stringify(actual);
2170 err.expected = expected = utils.stringify(expected);
2999 process.stdout.write(JSON.stringify(result, null, 2 ));
3133 console.log(JSON.stringify(['start', { total: total }]));
3137 console.log(JSON.stringify(['pass', clean(test)]));
3143 console.log(JSON.stringify(['fail', test]));
3147 process.stdout.write(JSON.stringify(['end', self.stats]));
3228 process.stdout.write(JSON.stringify(obj, null, 2));
4433 return JSON.stringify(this, function(key, val){
4522 return done(new Error('done() invoked with non-Error: ' + JSON.stringify(err)));
4582 , stringify = utils.stringify
4779 err = new Error('the ' + type(err) + ' ' + stringify(err) + ' was thrown, throw an Error :)');
6068 * @summary Stringify `value`.
6075 * JSON.stringify().
6083 exports.stringify = function(value) {
6107 * like JSON.stringify but more sense.
6196 * @see {@link exports.stringify}