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
8921ccec
Commit
8921ccec
authored
Jan 13, 2015
by
Arnout Kazemier
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
[travis] Only use our API key for travis so less builds fail.
Relevant discussion: #6
parent
8b37b088
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
10 additions
and
1 deletion
+10
-1
.travis.yml
.travis.yml
+3
-0
package.json
package.json
+2
-1
email.test.js
test/email.test.js
+1
-0
fullcontact.test.js
test/fullcontact.test.js
+1
-0
location.test.js
test/location.test.js
+1
-0
name.test.js
test/name.test.js
+1
-0
person.test.js
test/person.test.js
+1
-0
No files found.
.travis.yml
View file @
8921ccec
language
:
node_js
node_js
:
-
"
0.10"
-
"
0.11"
script
:
-
"
npm
run
test-travis"
package.json
View file @
8921ccec
...
...
@@ -5,7 +5,8 @@
"main"
:
"index.js"
,
"keywords"
:
[
"fullcontact"
,
"api"
,
"full"
,
"contact"
],
"scripts"
:
{
"test"
:
"API_KEY=506d9c8a7aafae5a NODE_ENV=testing ./node_modules/.bin/mocha $(find test -name '*.test.js')"
"test"
:
"NODE_ENV=testing ./node_modules/.bin/mocha $(find test -name '*.test.js')"
,
"test-travis"
:
"API_KEY=506d9c8a7aafae5a NODE_ENV=testing ./node_modules/.bin/mocha $(find test -name '*.test.js')"
},
"repository"
:
{
"type"
:
"git"
,
...
...
test/email.test.js
View file @
8921ccec
...
...
@@ -11,6 +11,7 @@ describe('FullContact.Email', function () {
// The API key we use for testing.
//
var
key
=
process
.
env
.
API_KEY
;
if
(
!
key
)
throw
new
Error
(
'Please provide your API using the API_KEY env variable.'
);
//
// Some of the requests take a really long time, so set a really long timeout
...
...
test/fullcontact.test.js
View file @
8921ccec
...
...
@@ -11,6 +11,7 @@ describe('FullContact', function () {
// The API key we use for testing.
//
var
key
=
process
.
env
.
API_KEY
;
if
(
!
key
)
throw
new
Error
(
'Please provide your API using the API_KEY env variable.'
);
//
// Some of the requests take a really long time, so set a really long timeout
...
...
test/location.test.js
View file @
8921ccec
...
...
@@ -11,6 +11,7 @@ describe('FullContact.Location', function () {
// The API key we use for testing.
//
var
key
=
process
.
env
.
API_KEY
;
if
(
!
key
)
throw
new
Error
(
'Please provide your API using the API_KEY env variable.'
);
//
// Some of the requests take a really long time, so set a really long timeout
...
...
test/name.test.js
View file @
8921ccec
...
...
@@ -11,6 +11,7 @@ describe('FullContact.Name', function () {
// The API key we use for testing.
//
var
key
=
process
.
env
.
API_KEY
;
if
(
!
key
)
throw
new
Error
(
'Please provide your API using the API_KEY env variable.'
);
//
// Some of the requests take a really long time, so set a really long timeout
...
...
test/person.test.js
View file @
8921ccec
...
...
@@ -11,6 +11,7 @@ describe('FullContact.Person', function () {
// The API key we use for testing.
//
var
key
=
process
.
env
.
API_KEY
;
if
(
!
key
)
throw
new
Error
(
'Please provide your API using the API_KEY env variable.'
);
//
// Some of the requests take a really long time, so set a really long timeout
...
...
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