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

Commit

Permalink
Release 13.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
btd committed Jul 30, 2018
1 parent 40db606 commit 38910f7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
6 changes: 5 additions & 1 deletion History.md
@@ -1,6 +1,10 @@
# 13.2.3 / 2018-07-30

* `.only.keys` throws when no `Object.prototype.should`

# 13.2.2 / 2018-07-26

* Updates for TS definition
* Updates for TS definition

# 13.2.1 / 2018-01-12

Expand Down
2 changes: 1 addition & 1 deletion package.json
@@ -1,7 +1,7 @@
{
"name": "should",
"description": "test framework agnostic BDD-style assertions",
"version": "13.2.2",
"version": "13.2.3",
"author": "TJ Holowaychuk <tj@vision-media.ca>, Denis Bardadym <bardadymchik@gmail.com>",
"typings": "./should.d.ts",
"repository": {
Expand Down
4 changes: 2 additions & 2 deletions should.js
@@ -1,6 +1,6 @@
/*!
* should - test framework agnostic BDD-style assertions
* @version v13.2.2
* @version v13.2.3
* @author TJ Holowaychuk <tj@vision-media.ca>, Denis Bardadym <bardadymchik@gmail.com>
* @link https://github.com/shouldjs/should.js
* @license MIT
Expand Down Expand Up @@ -3735,7 +3735,7 @@ function propertyAssertions(should, Assertion) {
this.assert(missingKeys.length === 0);

if (this.onlyThis) {
obj.should.have.size(keys.length);
should(obj).have.size(keys.length);
}
});

Expand Down

0 comments on commit 38910f7

Please sign in to comment.