Skip to content

Commit 6be84bf

Browse files
committed
Merge pull request #254 from ripple/use-tap-reporter
Use TAP reporter
2 parents 11d7317 + 6cd79e7 commit 6be84bf

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
"scripts": {
4848
"build": "node_modules/.bin/gulp",
4949
"pretest": "node_modules/.bin/gulp concat-sjcl",
50-
"test": "./node_modules/.bin/istanbul test -x build/sjcl.js -x src/js/jsbn/* ./node_modules/mocha/bin/_mocha -- --reporter spec test/*-test.js",
50+
"test": "./node_modules/.bin/istanbul test -x build/sjcl.js -x src/js/jsbn/* ./node_modules/mocha/bin/_mocha -- --reporter tap test/*-test.js",
5151
"coveralls": "cat ./coverage/lcov.info | ./node_modules/.bin/coveralls"
5252
},
5353
"repository": {

test/amount-test.js

-1
Original file line numberDiff line numberDiff line change
@@ -1199,7 +1199,6 @@ describe('Amount', function() {
11991199
});
12001200

12011201
it ('from_json minimum XRP', function() {
1202-
console.log('max', Amount.bi_xns_max.toString());
12031202
var amt = Amount.from_json('-9000000000000000000');
12041203
assert.strictEqual(amt.to_json(), '-9000000000000000000');
12051204
});

0 commit comments

Comments
 (0)