Skip to content
This repository has been archived by the owner on Oct 30, 2018. It is now read-only.

Commit

Permalink
Merge c165582 into ab7b95d
Browse files Browse the repository at this point in the history
  • Loading branch information
bryanchriswhite committed Feb 15, 2018
2 parents ab7b95d + c165582 commit 198eb48
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"coverage": "STORJ_ALLOW_LOOPBACK=1 NODE_ENV=test ./node_modules/.bin/istanbul cover ./node_modules/.bin/_mocha -- --recursive",
"integration": "NODE_ENV=test _mocha --recursive test-integration/**",
"linter": "./node_modules/.bin/jshint --config .jshintrc ./index.js ./lib ./test",
"test": "npm run testsuite && npm run linter",
"test": "npm run testsuite && npm run integration && npm run linter",
"dev": "NODE_ENV=development nodemon bin/storj-bridge.js",
"make-docs": "./node_modules/.bin/jsdoc index.js lib -r -R README.md -u ./doc -c .jsdoc.json --verbose -d ./jsdoc",
"publish-docs": "gh-pages -d jsdoc --repo git@github.com:Storj/bridge.git",
Expand Down
6 changes: 5 additions & 1 deletion test-integration/contract-renew.integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,11 @@ describe('ContractRenewalJob', function() {
let storage, documents, landlord;

before(function(done) {
landlord = http.createServer((req, res) => res.end('{}')).listen(
landlord = http.createServer((req, res) => {
return res.end(JSON.stringify({
result: [null]
}));
}).listen(
url.parse(config.complex.rpcUrl).port
);
documents = [];
Expand Down

0 comments on commit 198eb48

Please sign in to comment.