I\'m trying to write a unit test using chai js assertion, and was wondering how to expect arrays with zero length as values.
My Test function expect statement:
What about
return expect(functionRetuningPromise()).to.eventually.have.property("key1").that.satisfy(function (value) { expect(value).to.be.instanceof(Array); expect(value).to.have.length.above(0); return true; })