Skip to content

Instantly share code, notes, and snippets.

@ericelliott
Created July 11, 2015 20:03
Show Gist options
  • Save ericelliott/471412e29d3d2b535988 to your computer and use it in GitHub Desktop.
Save ericelliott/471412e29d3d2b535988 to your computer and use it in GitHub Desktop.
blue-tape Promise API
test('Greet World', (assert) => new Promise((resolve) => {
assert.equal(hello('World'), 'Hello, World!');
setTimeout(() => {
// do some async stuff
resolve();
}, 10);
}));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment