Skip to content

Instantly share code, notes, and snippets.

@jmarmolejos
Created February 26, 2016 16:11
Show Gist options
  • Select an option

  • Save jmarmolejos/9aac7223af0e01be72e9 to your computer and use it in GitHub Desktop.

Select an option

Save jmarmolejos/9aac7223af0e01be72e9 to your computer and use it in GitHub Desktop.
describe('sample tests:', function() {
it('callback', function(done) {
http.get('http://www.example.com', function(res) {
assert.equal(200, res.statusCode);
done();
});
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment