Punctuate descriptions

This commit is contained in:
Jakob Krigovsky 2016-10-08 15:41:36 +02:00
parent f07fc0b65d
commit dcd5baa34a
4 changed files with 23 additions and 23 deletions

View file

@ -27,7 +27,7 @@ var util = require('./chai/utils');
/** /**
* # .use(function) * # .use(function)
* *
* Provides a way to extend the internals of Chai * Provides a way to extend the internals of Chai.
* *
* @param {Function} * @param {Function}
* @returns {this} for chaining * @returns {this} for chaining

View file

@ -1945,7 +1945,7 @@ module.exports = function (chai, _) {
/** /**
* ### .change(function) * ### .change(function)
* *
* Asserts that a function changes an object property * Asserts that a function changes an object property.
* *
* var obj = { val: 10 }; * var obj = { val: 10 };
* var fn = function() { obj.val += 3 }; * var fn = function() { obj.val += 3 };
@ -2002,13 +2002,13 @@ module.exports = function (chai, _) {
/** /**
* ### .increase(target[, property[, message]]) * ### .increase(target[, property[, message]])
* *
* Asserts that a function increases a numeric object property * Asserts that a function increases a numeric object property.
* *
* var obj = { val: 10 }; * var obj = { val: 10 };
* var fn = function() { obj.val = 15 }; * var fn = function() { obj.val = 15 };
* expect(fn).to.increase(obj, 'val'); * expect(fn).to.increase(obj, 'val');
* *
* It can also receive a function which returns the property * It can also receive a function which returns the property:
* *
* var obj = { val: 10 }; * var obj = { val: 10 };
* var fn = function() { obj.val = 5 }; * var fn = function() { obj.val = 5 };
@ -2066,13 +2066,13 @@ module.exports = function (chai, _) {
/** /**
* ### .decrease(target[, property[, message]]) * ### .decrease(target[, property[, message]])
* *
* Asserts that a function decreases a numeric object property * Asserts that a function decreases a numeric object property.
* *
* var obj = { val: 10 }; * var obj = { val: 10 };
* var fn = function() { obj.val = 5 }; * var fn = function() { obj.val = 5 };
* expect(fn).to.decrease(obj, 'val'); * expect(fn).to.decrease(obj, 'val');
* *
* It can also receive a function which returns the property * It can also receive a function which returns the property:
* *
* var obj = { val: 10 }; * var obj = { val: 10 };
* var fn = function() { obj.val = 5 }; * var fn = function() { obj.val = 5 };

View file

@ -241,7 +241,7 @@ module.exports = function (chai, util) {
/** /**
* ### .isAbove(valueToCheck, valueToBeAbove, [message]) * ### .isAbove(valueToCheck, valueToBeAbove, [message])
* *
* Asserts `valueToCheck` is strictly greater than (>) `valueToBeAbove` * Asserts `valueToCheck` is strictly greater than (>) `valueToBeAbove`.
* *
* assert.isAbove(5, 2, '5 is strictly greater than 2'); * assert.isAbove(5, 2, '5 is strictly greater than 2');
* *
@ -260,7 +260,7 @@ module.exports = function (chai, util) {
/** /**
* ### .isAtLeast(valueToCheck, valueToBeAtLeast, [message]) * ### .isAtLeast(valueToCheck, valueToBeAtLeast, [message])
* *
* Asserts `valueToCheck` is greater than or equal to (>=) `valueToBeAtLeast` * Asserts `valueToCheck` is greater than or equal to (>=) `valueToBeAtLeast`.
* *
* assert.isAtLeast(5, 2, '5 is greater or equal to 2'); * assert.isAtLeast(5, 2, '5 is greater or equal to 2');
* assert.isAtLeast(3, 3, '3 is greater or equal to 3'); * assert.isAtLeast(3, 3, '3 is greater or equal to 3');
@ -280,7 +280,7 @@ module.exports = function (chai, util) {
/** /**
* ### .isBelow(valueToCheck, valueToBeBelow, [message]) * ### .isBelow(valueToCheck, valueToBeBelow, [message])
* *
* Asserts `valueToCheck` is strictly less than (<) `valueToBeBelow` * Asserts `valueToCheck` is strictly less than (<) `valueToBeBelow`.
* *
* assert.isBelow(3, 6, '3 is strictly less than 6'); * assert.isBelow(3, 6, '3 is strictly less than 6');
* *
@ -299,7 +299,7 @@ module.exports = function (chai, util) {
/** /**
* ### .isAtMost(valueToCheck, valueToBeAtMost, [message]) * ### .isAtMost(valueToCheck, valueToBeAtMost, [message])
* *
* Asserts `valueToCheck` is less than or equal to (<=) `valueToBeAtMost` * Asserts `valueToCheck` is less than or equal to (<=) `valueToBeAtMost`.
* *
* assert.isAtMost(3, 6, '3 is less than or equal to 6'); * assert.isAtMost(3, 6, '3 is less than or equal to 6');
* assert.isAtMost(4, 4, '4 is less than or equal to 4'); * assert.isAtMost(4, 4, '4 is less than or equal to 4');
@ -432,7 +432,7 @@ module.exports = function (chai, util) {
/** /**
* ### .isNaN * ### .isNaN
* *
* Asserts that value is NaN * Asserts that value is NaN.
* *
* assert.isNaN(NaN, 'NaN is NaN'); * assert.isNaN(NaN, 'NaN is NaN');
* *
@ -450,7 +450,7 @@ module.exports = function (chai, util) {
/** /**
* ### .isNotNaN * ### .isNotNaN
* *
* Asserts that value is not NaN * Asserts that value is not NaN.
* *
* assert.isNotNaN(4, '4 is not NaN'); * assert.isNotNaN(4, '4 is not NaN');
* *
@ -739,7 +739,7 @@ module.exports = function (chai, util) {
/** /**
* ### .isFinite(value, [message]) * ### .isFinite(value, [message])
* *
* Asserts that `value` is a finite number. Unlike `.isNumber`, this will fail for `NaN` and `Infinity` * Asserts that `value` is a finite number. Unlike `.isNumber`, this will fail for `NaN` and `Infinity`.
* *
* var cups = 2; * var cups = 2;
* assert.isFinite(cups, 'how many cups'); * assert.isFinite(cups, 'how many cups');
@ -2238,7 +2238,7 @@ module.exports = function (chai, util) {
/** /**
* ### .changes(function, object, property, [message]) * ### .changes(function, object, property, [message])
* *
* Asserts that a function changes the value of a property * Asserts that a function changes the value of a property.
* *
* var obj = { val: 10 }; * var obj = { val: 10 };
* var fn = function() { obj.val = 22 }; * var fn = function() { obj.val = 22 };
@ -2265,7 +2265,7 @@ module.exports = function (chai, util) {
/** /**
* ### .changesBy(function, object, property, delta, [message]) * ### .changesBy(function, object, property, delta, [message])
* *
* Asserts that a function changes the value of a property by an amount (delta) * Asserts that a function changes the value of a property by an amount (delta).
* *
* var obj = { val: 10 }; * var obj = { val: 10 };
* var fn = function() { obj.val += 2 }; * var fn = function() { obj.val += 2 };
@ -2297,7 +2297,7 @@ module.exports = function (chai, util) {
/** /**
* ### .doesNotChange(function, object, property, [message]) * ### .doesNotChange(function, object, property, [message])
* *
* Asserts that a function does not change the value of a property * Asserts that a function does not change the value of a property.
* *
* var obj = { val: 10 }; * var obj = { val: 10 };
* var fn = function() { console.log('foo'); }; * var fn = function() { console.log('foo'); };
@ -2356,7 +2356,7 @@ module.exports = function (chai, util) {
/** /**
* ### .increases(function, object, property, [message]) * ### .increases(function, object, property, [message])
* *
* Asserts that a function increases a numeric object property * Asserts that a function increases a numeric object property.
* *
* var obj = { val: 10 }; * var obj = { val: 10 };
* var fn = function() { obj.val = 13 }; * var fn = function() { obj.val = 13 };
@ -2383,7 +2383,7 @@ module.exports = function (chai, util) {
/** /**
* ### .increasesBy(function, object, property, delta, [message]) * ### .increasesBy(function, object, property, delta, [message])
* *
* Asserts that a function increases a numeric object property or a function's return value by an amount (delta) * Asserts that a function increases a numeric object property or a function's return value by an amount (delta).
* *
* var obj = { val: 10 }; * var obj = { val: 10 };
* var fn = function() { obj.val += 10 }; * var fn = function() { obj.val += 10 };
@ -2415,7 +2415,7 @@ module.exports = function (chai, util) {
/** /**
* ### .doesNotIncrease(function, object, property, [message]) * ### .doesNotIncrease(function, object, property, [message])
* *
* Asserts that a function does not increase a numeric object property * Asserts that a function does not increase a numeric object property.
* *
* var obj = { val: 10 }; * var obj = { val: 10 };
* var fn = function() { obj.val = 8 }; * var fn = function() { obj.val = 8 };
@ -2442,7 +2442,7 @@ module.exports = function (chai, util) {
/** /**
* ### .increasesButNotBy(function, object, property, [message]) * ### .increasesButNotBy(function, object, property, [message])
* *
* Asserts that a function does not increase a numeric object property or function's return value by an amount (delta) * Asserts that a function does not increase a numeric object property or function's return value by an amount (delta).
* *
* var obj = { val: 10 }; * var obj = { val: 10 };
* var fn = function() { obj.val = 15 }; * var fn = function() { obj.val = 15 };
@ -2474,7 +2474,7 @@ module.exports = function (chai, util) {
/** /**
* ### .decreases(function, object, property, [message]) * ### .decreases(function, object, property, [message])
* *
* Asserts that a function decreases a numeric object property * Asserts that a function decreases a numeric object property.
* *
* var obj = { val: 10 }; * var obj = { val: 10 };
* var fn = function() { obj.val = 5 }; * var fn = function() { obj.val = 5 };
@ -2533,7 +2533,7 @@ module.exports = function (chai, util) {
/** /**
* ### .doesNotDecrease(function, object, property, [message]) * ### .doesNotDecrease(function, object, property, [message])
* *
* Asserts that a function does not decreases a numeric object property * Asserts that a function does not decreases a numeric object property.
* *
* var obj = { val: 10 }; * var obj = { val: 10 };
* var fn = function() { obj.val = 15 }; * var fn = function() { obj.val = 15 };

View file

@ -7,7 +7,7 @@
/** /**
* # getActual(object, [actual]) * # getActual(object, [actual])
* *
* Returns the `actual` value for an Assertion * Returns the `actual` value for an Assertion.
* *
* @param {Object} object (constructed Assertion) * @param {Object} object (constructed Assertion)
* @param {Arguments} chai.Assertion.prototype.assert arguments * @param {Arguments} chai.Assertion.prototype.assert arguments