Skip to content

Commit cad8e19

Browse files
committed
feat(test-shared): add strictEqual assertion method
1 parent 4d26299 commit cad8e19

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+
strictEqual: function(a, b) {
45+
expect(a).to.eql(b);
46+
},
47+
4448
notEqual: function(a, b) {
4549
expect(a).to.not.equal(b);
4650
},

0 commit comments

Comments
 (0)