Skip to content

Commit

Permalink
feat(test-shared): add notEqual assertion
Browse files Browse the repository at this point in the history
  • Loading branch information
mbroadst committed Sep 1, 2017
1 parent 2511ee3 commit 41d93fd
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);
},

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

ok: function(a) {
expect(a).to.be.ok;
},
Expand Down

0 comments on commit 41d93fd

Please sign in to comment.