Not sure if you managed to get round to it, but you can pass in `done()` as a callback in jest: ```js it('mock setTimeout test', (done) => { setTimeout(() => { console.log('TIME IS UP'); done(); }, 1000); }); ``` (Thanks for [this post](https://github.com/facebook/jest/issues/3211))