From eadcec0633528f595d3408ac0a9d08ba649c736e Mon Sep 17 00:00:00 2001 From: David Dias Date: Fri, 23 Dec 2016 09:10:35 +0000 Subject: [PATCH] fix: npm scripts --- package.json | 6 +++--- src/cli/commands/bitswap/wantlist.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/package.json b/package.json index 292e48e10a..8ffc39be96 100644 --- a/package.json +++ b/package.json @@ -22,9 +22,9 @@ "coverage": "gulp coverage", "test": "gulp test", "test:unit:node": "gulp test:node", - "test:unit:node:core": "TEST=core npm run test:node", - "test:unit:node:http": "TEST=http npm run test:node", - "test:unit:node:cli": "TEST=cli npm run test:node", + "test:unit:node:core": "TEST=core npm run test:unit:node", + "test:unit:node:http": "TEST=http npm run test:unit:node", + "test:unit:node:cli": "TEST=cli npm run test:unit:node", "test:unit:browser": "gulp test:browser", "test:interop": "mocha -t 60000 test/interop", "test:interop:node": "mocha -t 60000 test/interop/node.js", diff --git a/src/cli/commands/bitswap/wantlist.js b/src/cli/commands/bitswap/wantlist.js index eca9424539..798ccc5560 100644 --- a/src/cli/commands/bitswap/wantlist.js +++ b/src/cli/commands/bitswap/wantlist.js @@ -26,7 +26,7 @@ module.exports = { if (err) { throw err } - res.Keys.forEach((k) => console.log(k)) + res.Keys.forEach((k) => console.log(k.toString())) }) }) }