Merge pull request #580 from gasparnagy/patch-1

Chai: Add lengthOf for BDD section
This commit is contained in:
Rico Sta. Cruz
2018-07-02 20:47:46 +08:00
committed by GitHub

View File

@@ -115,6 +115,7 @@ expect(object)
.to.have.members([2, 3, 4])
.to.have.keys(['foo'])
.to.have.key('foo')
.to.have.lengthOf(3)
```
```js