Skip to content

Commit

Permalink
Making bitcoin.com infrastructure the default
Browse files Browse the repository at this point in the history
  • Loading branch information
christroutner committed Aug 16, 2019
1 parent e7adcd9 commit 0b2c285
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion config/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"use strict"

// By default choose a local rest API.
let RESTAPI = "local"
let RESTAPI = "bitcoin.com"

// Override the RESTAPI setting if envronment variable is set.
if (process.env.RESTAPI) RESTAPI = process.env.RESTAPI
Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@
"postpack": "rm -f oclif.manifest.json",
"prepack": "oclif-dev manifest && oclif-dev readme",
"test": "TEST=unit nyc --reporter=text mocha --timeout 15000",
"test:integration": "TEST=integration nyc --reporter=text mocha --timeout 15000",
"test:integration:bitcoin.com": "RESTAPI=bitcoin.com TEST=integration nyc --reporter=text mocha --timeout 15000",
"test:integration": "RESTAPI=bitcoin.com TEST=integration nyc --reporter=text mocha --timeout 15000",
"test:integration:local": "RESTAPI=local TEST=integration nyc --reporter=text mocha --timeout 15000",
"test:integration:decatur": "RESTAPI=decatur TEST=integration nyc --reporter=text mocha --timeout 15000",
"coverage": "nyc report --reporter=text-lcov | coveralls",
"coverage:report": "nyc --reporter=html mocha",
"version": "oclif-dev readme && git add README.md",
Expand Down

0 comments on commit 0b2c285

Please sign in to comment.