Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
F
fullcontact
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
prospector
fullcontact
Commits
88c7dbc3
Commit
88c7dbc3
authored
Jan 13, 2015
by
AdriVanHoudt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
logging for test
parent
0d2f03df
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
person.test.js
test/person.test.js
+8
-1
No files found.
test/person.test.js
View file @
88c7dbc3
...
...
@@ -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'
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment