async-mock
v0.0.4
Published
A convenient way to mock asyc calls
Downloads
4
Readme
Async Mock
A convenient way to mock anticipated async calls.
var asyncMock = require('async-mock');
asyncMock(5*1000,function(){
console.log('I just executed!');
})