Files
peneloplay/test/lib/expect.js
Fergal Moran 6e8068cedd Initial commit
2014-01-13 14:52:31 +00:00

13 lines
233 B
JavaScript
Executable File

/*!
* chai
* Copyright(c) 2011-2012 Jake Luer <jake@alogicalparadox.com>
* MIT Licensed
*/
module.exports = function (chai, util) {
chai.expect = function (val, message) {
return new chai.Assertion(val, message);
};
};