mirror of
https://github.com/chaijs/chai
synced 2024-11-14 15:57:10 +00:00
feat: add "deep" flag in oneOf (#1334)
This commit is contained in:
parent
6c963d00ac
commit
817284c01b
2 changed files with 20 additions and 8 deletions
|
@ -3150,7 +3150,8 @@ module.exports = function (chai, _) {
|
|||
var expected = flag(this, 'object')
|
||||
, flagMsg = flag(this, 'message')
|
||||
, ssfi = flag(this, 'ssfi')
|
||||
, contains = flag(this, 'contains');
|
||||
, contains = flag(this, 'contains')
|
||||
, isDeep = flag(this, 'deep');
|
||||
new Assertion(list, flagMsg, ssfi, true).to.be.an('array');
|
||||
|
||||
if (contains) {
|
||||
|
@ -3162,13 +3163,23 @@ module.exports = function (chai, _) {
|
|||
, expected
|
||||
);
|
||||
} else {
|
||||
this.assert(
|
||||
list.indexOf(expected) > -1
|
||||
, 'expected #{this} to be one of #{exp}'
|
||||
, 'expected #{this} to not be one of #{exp}'
|
||||
, list
|
||||
, expected
|
||||
);
|
||||
if (isDeep) {
|
||||
this.assert(
|
||||
list.some(possibility => _.eql(expected, possibility))
|
||||
, 'expected #{this} to deeply equal one of #{exp}'
|
||||
, 'expected #{this} to deeply equal one of #{exp}'
|
||||
, list
|
||||
, expected
|
||||
);
|
||||
} else {
|
||||
this.assert(
|
||||
list.indexOf(expected) > -1
|
||||
, 'expected #{this} to be one of #{exp}'
|
||||
, 'expected #{this} to not be one of #{exp}'
|
||||
, list
|
||||
, expected
|
||||
);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -3308,6 +3308,7 @@ describe('expect', function () {
|
|||
expect([3, [4]]).to.not.be.oneOf([1, 2, [3, 4]]);
|
||||
var threeFour = [3, [4]];
|
||||
expect(threeFour).to.be.oneOf([1, 2, threeFour]);
|
||||
expect([]).to.be.deep.oneOf([[], '']);
|
||||
|
||||
expect([1, 2]).to.contain.oneOf([4,2,5]);
|
||||
expect([3, 4]).to.not.contain.oneOf([2,1,5]);
|
||||
|
|
Loading…
Reference in a new issue