Skip to content

Commit

Permalink
feat(test-shared): add strictEqual assertion method
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroadst committed Sep 1, 2017
1 parent 4d26299 commit cad8e19
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions test/functional/shared.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,10 @@ var assert = {
expect(a).to.eql(b);
},

strictEqual: function(a, b) {
expect(a).to.eql(b);
},

notEqual: function(a, b) {
expect(a).to.not.equal(b);
},
Expand Down

0 comments on commit cad8e19

Please sign in to comment.