From 6cd79e72372fa680bf28b834ca4405632c5136bf Mon Sep 17 00:00:00 2001 From: wltsmrz Date: Wed, 14 Jan 2015 15:21:48 -0800 Subject: [PATCH] Use TAP reporter --- package.json | 2 +- test/amount-test.js | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) 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'); });