jQuery doesn't load properly outside of a browser environment, so using it in Mocha tests is harder than necessary. Some of this library, however, uses $.extend in critical places, meaning that the jQuery dependency infects even Mocha tests that don't need a browser. I suggest replacing with _.extend or something to make life easier. (I'll make a pull request in the next few days, I hope.)
jQuery doesn't load properly outside of a browser environment, so using it in Mocha tests is harder than necessary. Some of this library, however, uses
$.extend
in critical places, meaning that the jQuery dependency infects even Mocha tests that don't need a browser. I suggest replacing with_.extend
or something to make life easier. (I'll make a pull request in the next few days, I hope.)