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!');
})
A convenient way to mock asyc calls
<script type="module">
import asyncMock from 'https://cdn.skypack.dev/async-mock';
</script>
A convenient way to mock anticipated async calls.
var asyncMock = require('async-mock');
asyncMock(5*1000,function(){
console.log('I just executed!');
})