Skip to content

Instantly share code, notes, and snippets.

@patoi
Last active April 3, 2018 09:10
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 patoi/b30ebe462cd699a345b23aa815c01b5e to your computer and use it in GitHub Desktop.
Save patoi/b30ebe462cd699a345b23aa815c01b5e to your computer and use it in GitHub Desktop.
Testing async/await
async function testFunction (isOK) {
if (isOK === true) {
return 'OK'
} else {
throw new Error('not OK')
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment