Skip to content

Commit 41d93fd

Browse files
committed
feat(test-shared): add notEqual assertion
1 parent 2511ee3 commit 41d93fd

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

test/functional/shared.js

+4
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,10 @@ var assert = {
4141
expect(a).to.eql(b);
4242
},
4343

44+
notEqual: function(a, b) {
45+
expect(a).to.not.equal(b);
46+
},
47+
4448
ok: function(a) {
4549
expect(a).to.be.ok;
4650
},

0 commit comments

Comments
 (0)