Skip to content

Instantly share code, notes, and snippets.

@kirs
Created March 18, 2017 16:38
Show Gist options
  • Save kirs/14a329124dd54b92a7a685376600f13d to your computer and use it in GitHub Desktop.
Save kirs/14a329124dd54b92a7a685376600f13d to your computer and use it in GitHub Desktop.
function timeout(ms) {
return new Promise(resolve => setTimeout(resolve, ms));
}
test('I cant handle timeouts', async () => {
await timeout(1);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment