Skip to content
This repository was archived by the owner on Nov 4, 2020. It is now read-only.

Commit 38910f7

Browse files
committed
Release 13.2.3
1 parent 40db606 commit 38910f7

File tree

3 files changed

+8
-4
lines changed

3 files changed

+8
-4
lines changed

History.md

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
1+
# 13.2.3 / 2018-07-30
2+
3+
* `.only.keys` throws when no `Object.prototype.should`
4+
15
# 13.2.2 / 2018-07-26
26

3-
* Updates for TS definition
7+
* Updates for TS definition
48

59
# 13.2.1 / 2018-01-12
610

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "should",
33
"description": "test framework agnostic BDD-style assertions",
4-
"version": "13.2.2",
4+
"version": "13.2.3",
55
"author": "TJ Holowaychuk <[email protected]>, Denis Bardadym <[email protected]>",
66
"typings": "./should.d.ts",
77
"repository": {

should.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*!
22
* should - test framework agnostic BDD-style assertions
3-
* @version v13.2.2
3+
* @version v13.2.3
44
* @author TJ Holowaychuk <[email protected]>, Denis Bardadym <[email protected]>
55
* @link https://github.com/shouldjs/should.js
66
* @license MIT
@@ -3735,7 +3735,7 @@ function propertyAssertions(should, Assertion) {
37353735
this.assert(missingKeys.length === 0);
37363736

37373737
if (this.onlyThis) {
3738-
obj.should.have.size(keys.length);
3738+
should(obj).have.size(keys.length);
37393739
}
37403740
});
37413741

0 commit comments

Comments
 (0)