Answers for "deep equal expect"

1

what does chai expect return

Object.prototype.b = 2;

expect({a: 1}).to.have.own.property('a');
expect({a: 1}).to.have.property('b');
expect({a: 1}).to.not.have.own.property('b');

expect({a: 1}).to.own.include({a: 1});
expect({a: 1}).to.include({b: 2}).but.not.own.include({b: 2});
Posted by: Guest on June-07-2020
0

chai expect array without order

expect([2, 1, 3].sort()).to.eql([3, 1, 2].sort())
Posted by: Guest on August-18-2020

Browse Popular Code Answers by Language