Skip to content

Commit

Permalink
add tests for #7
Browse files Browse the repository at this point in the history
  • Loading branch information
A committed Jun 14, 2015
1 parent a8926db commit 9c3d6c5
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,13 @@ describe('superagent mock', function() {
done();
});

it('should work correct with unmocked requests', function(done) {
request
.get('http://example.com')
.end(function(err, res) {
done(err);
});
});
});

});

0 comments on commit 9c3d6c5

Please sign in to comment.