mirror of
https://github.com/chaijs/chai
synced 2024-11-13 23:37:07 +00:00
chai@4.3.2
This commit is contained in:
parent
71245a3e33
commit
3b9bc7f56d
4 changed files with 5 additions and 5 deletions
4
chai.js
4
chai.js
|
@ -14,7 +14,7 @@ var used = [];
|
|||
* Chai version
|
||||
*/
|
||||
|
||||
exports.version = '4.3.1';
|
||||
exports.version = '4.3.2';
|
||||
|
||||
/*!
|
||||
* Assertion Error
|
||||
|
@ -3549,7 +3549,7 @@ module.exports = function (chai, _) {
|
|||
} else {
|
||||
if (isDeep) {
|
||||
this.assert(
|
||||
list.some(possibility => _.eql(expected, possibility))
|
||||
list.some(function(possibility) { return _.eql(expected, possibility) })
|
||||
, 'expected #{this} to deeply equal one of #{exp}'
|
||||
, 'expected #{this} to deeply equal one of #{exp}'
|
||||
, list
|
||||
|
|
|
@ -10,7 +10,7 @@ var used = [];
|
|||
* Chai version
|
||||
*/
|
||||
|
||||
exports.version = '4.3.1';
|
||||
exports.version = '4.3.2';
|
||||
|
||||
/*!
|
||||
* Assertion Error
|
||||
|
|
2
package-lock.json
generated
2
package-lock.json
generated
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "chai",
|
||||
"version": "4.3.1",
|
||||
"version": "4.3.2",
|
||||
"lockfileVersion": 1,
|
||||
"requires": true,
|
||||
"dependencies": {
|
||||
|
|
|
@ -17,7 +17,7 @@
|
|||
"Veselin Todorov <hi@vesln.com>",
|
||||
"John Firebaugh <john.firebaugh@gmail.com>"
|
||||
],
|
||||
"version": "4.3.1",
|
||||
"version": "4.3.2",
|
||||
"repository": {
|
||||
"type": "git",
|
||||
"url": "https://github.com/chaijs/chai"
|
||||
|
|
Loading…
Reference in a new issue