Skip to content

Instantly share code, notes, and snippets.

@rdpanek
Created January 31, 2013 14:01
Show Gist options
  • Save rdpanek/4683062 to your computer and use it in GitHub Desktop.
Save rdpanek/4683062 to your computer and use it in GitHub Desktop.
example integrate test
it('List all types', function(done){
request(app)
.get('/api/v1/types')
.expect(200)
.end(function(err, res){
res.body.length.should.eql(2);
res.body[0].title.should.eql(title);
done();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment