Added tests using mocha and chai

This commit is contained in:
Kyle Hornberg
2013-12-05 14:40:20 -06:00
parent 11c5f1d449
commit 1b7d69a214
7 changed files with 9463 additions and 7 deletions
+12
View File
@@ -0,0 +1,12 @@
/*!
* chai
* Copyright(c) 2011-2012 Jake Luer <[email protected]>
* MIT Licensed
*/
module.exports = function (chai, util) {
chai.expect = function (val, message) {
return new chai.Assertion(val, message);
};
};