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
commit 0e010d0c0c
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.members([2, 3, 4])
.to.have.keys(['foo']) .to.have.keys(['foo'])
.to.have.key('foo') .to.have.key('foo')
.to.have.lengthOf(3)
``` ```
```js ```js