Skip to content

Instantly share code, notes, and snippets.

@adamweeks
Last active October 28, 2016 20:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save adamweeks/a25910ccacfd5672fb606fc0ad720087 to your computer and use it in GitHub Desktop.
Save adamweeks/a25910ccacfd5672fb606fc0ad720087 to your computer and use it in GitHub Desktop.
A quick function that returns a failure after 2 seconds.
function testFailure() {
return new Promise((resolve, reject) => {
setTimeout(() => {
reject();
}, 2000);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment