Chai: Add lengthOf for BDD section

This commit is contained in:
Gáspár Nagy 2018-06-25 11:10:01 +02:00 committed by GitHub
parent ff19f0154b
commit 695a2dc3e2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

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