UNPKG

node-qunit

Version:

QUnit testing framework for Node.js

14 lines (11 loc) 221 B
exports.myMethod = function() { return 123; }; exports.myAsyncMethod = function(callback) { setTimeout(function() { callback(123); }, 100); }; exports.myOtherMethod = function() { return 321; };