diff --git a/package.json b/package.json index 2ae610da..cf241b63 100644 --- a/package.json +++ b/package.json @@ -47,7 +47,7 @@ "scripts": { "build": "node_modules/.bin/gulp", "pretest": "node_modules/.bin/gulp concat-sjcl", - "test": "./node_modules/.bin/istanbul test -x build/sjcl.js -x src/js/jsbn/* ./node_modules/mocha/bin/_mocha -- --reporter spec test/*-test.js", + "test": "./node_modules/.bin/istanbul test -x build/sjcl.js -x src/js/jsbn/* ./node_modules/mocha/bin/_mocha -- --reporter tap test/*-test.js", "coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls" }, "repository": { diff --git a/test/amount-test.js b/test/amount-test.js index f0e7585f..1e04829b 100644 --- a/test/amount-test.js +++ b/test/amount-test.js @@ -1199,7 +1199,6 @@ describe('Amount', function() { }); it ('from_json minimum XRP', function() { - console.log('max', Amount.bi_xns_max.toString()); var amt = Amount.from_json('-9000000000000000000'); assert.strictEqual(amt.to_json(), '-9000000000000000000'); });