Skip to content

Commit 725c2b2

Browse files
committed
istanbul
1 parent 5b356e3 commit 725c2b2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib/decoder.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -269,7 +269,7 @@ Decoder.prototype.decodeUint128 = function(offset, size) {
269269
Decoder.prototype.decodeBigUint = function(offset, size, intSize) {
270270
var buffer = new Buffer(intSize);
271271
buffer.fill(0);
272-
this.fileStream.copy(buffer, intSize - size, offset, offset + intSize)
272+
this.fileStream.copy(buffer, intSize - size, offset, offset + intSize);
273273

274274
var integer = 0;
275275
var numberOfLongs = intSize / 4;

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
},
2727
"devDependencies": {
2828
"ip-address": "^5.8.0",
29-
"istanbul": "latest",
29+
"istanbul": "^0.4.3",
3030
"jshint": "latest",
3131
"mocha": "^2.4.5"
3232
},
@@ -47,7 +47,7 @@
4747
"scripts": {
4848
"lint": "jshint ./lib/*.js ./lib/**/*.js ./index.js ./examples/*.js",
4949
"test": "mocha -R spec --recursive --bail",
50-
"coverage": "istanbul cover _mocha -- -R dot --recursive",
50+
"coverage": "istanbul cover _mocha -- -R spec --timeout 5000 --recursive test",
5151
"benchmark": "node benchmark"
5252
}
5353
}

0 commit comments

Comments
 (0)