Skip to content

Instantly share code, notes, and snippets.

@compulim
Created July 31, 2017 17:58
Show Gist options
  • Save compulim/d6dcdc22a2f5e142b7cc2add6a3af4f4 to your computer and use it in GitHub Desktop.
Save compulim/d6dcdc22a2f5e142b7cc2add6a3af4f4 to your computer and use it in GitHub Desktop.
ES6 Promise to Mocha/Jasmine done
function asyncToDone(task: () => Promise<any>) {
return function (done: (err?: Error) => void) {
task().then(() => done(), done);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment