UNPKG

node-qunit

Version:

QUnit testing framework for Node.js

10 lines (8 loc) 164 B
exports.myMethod = function() { return 123; }; exports.myAsyncMethod = function(callback) { setTimeout(function() { callback(123); }, 100); };