docs: [config] make public, express param type

This commit is contained in:
Jake Luer 2014-03-18 08:44:31 -04:00
parent b638a360d7
commit a0661120d9

View file

@ -1,6 +1,6 @@
module.exports = {
/*!
/**
* ### config.includeStack
*
* User configurable property, influences whether stack trace
@ -9,11 +9,13 @@ module.exports = {
*
* chai.config.includeStack = true; // enable stack on error
*
* @param {Boolean}
* @api public
*/
includeStack: false,
/*!
/**
* ### config.showDiff
*
* User configurable property, influences whether or not
@ -22,11 +24,13 @@ module.exports = {
* will be true when the assertion has requested a diff
* be shown.
*
* @param {Boolean}
* @api public
*/
showDiff: true,
/*!
/**
* ### config.truncateThreshold
*
* User configurable property, sets length threshold for actual and
@ -37,8 +41,10 @@ module.exports = {
*
* chai.config.truncateThreshold = 0; // disable truncating
*
* @param {Number}
* @api public
*/
truncateThreshold: 40
};
};