Skip to content

Instantly share code, notes, and snippets.

@NickHeiner
Last active August 29, 2015 14:19
Show Gist options
  • Save NickHeiner/f2d68e5d1306c069326d to your computer and use it in GitHub Desktop.
Save NickHeiner/f2d68e5d1306c069326d to your computer and use it in GitHub Desktop.
it('returns the correct value', function(done) {
doAsyncWork().then(function(actualResult) {
expect(actualResult).to.equal(expectedResult);
}).finally(done);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment