4
NodeUnit test
オブジェクトにカスタムアサーションを追加して各テストに渡す方法はありますか?Nodeunitでカスタムアサーションを追加する方法
var Test = require('nodeunit').Test;
Test.prototype.customAssertion = function(obj) {
test.same(obj.foo, 'bar');
test.same(obj.bar, 'baz');
}
exports.test = function(test) {
test.customAssertion(obj);
test.done();
}