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

Commit

Permalink
Release 8.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
btd committed May 21, 2016
1 parent 097fdca commit 32ddfb9
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 5 deletions.
5 changes: 5 additions & 0 deletions History.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
8.4.0 / 2016-05-21
==================

* Add support for Symbols in .eql

8.3.2 / 2016-05-18
==================

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "should",
"description": "test framework agnostic BDD-style assertions",
"version": "8.3.2",
"version": "8.4.0",
"author": "TJ Holowaychuk <[email protected]>, Denis Bardadym <[email protected]> and other contributors",
"repository": {
"type": "git",
Expand Down
3 changes: 2 additions & 1 deletion should.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@

/*!
* should - test framework agnostic BDD-style assertions
* @version v8.3.2
* @version v8.4.0
* @author TJ Holowaychuk <[email protected]>, Denis Bardadym <[email protected]> and other contributors
* @link https://github.com/shouldjs/should.js
* @license MIT
Expand Down Expand Up @@ -3037,6 +3037,7 @@ function eqInternal(a, b, opts, stackA, stackB, path, fails) {
return (a !== a) ? result(b !== b, REASON.NAN_NUMBER)
: result(a === b, REASON.EQUALITY);

case 'symbol':
case 'boolean':
case 'string':
return result(a === b, REASON.EQUALITY);
Expand Down
6 changes: 3 additions & 3 deletions should.min.js

Large diffs are not rendered by default.

0 comments on commit 32ddfb9

Please sign in to comment.