Commit 88c7dbc3 by AdriVanHoudt

logging for test

parent 0d2f03df
......@@ -32,7 +32,14 @@ describe('FullContact.Person', function () {
describe('#email with webhook url/id', function () {
it('retrieves data by e-mail and sets up a webhook with the right url and id', function (done) {
api.person.email('arnout@observe.it', null, 'http://requestb.in/1bxgb751', 'webhookTest', done);
api.person.email('arnout@observe.it', null, 'http://requestb.in/1bxgb751', 'webhookTest', function email(err, data) {
if (err) return done(err);
console.log(err);
console.log(data);
done();
});
});
it('provides the proper casing');
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment