mirror of
https://github.com/fergalmoran/peneloplay.git
synced 2025-12-22 09:51:27 +00:00
13 lines
233 B
JavaScript
Executable File
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);
|
|
};
|
|
};
|
|
|