Created
February 26, 2016 16:11
-
-
Save jmarmolejos/9aac7223af0e01be72e9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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