Skip to content
This repository was archived by the owner on Feb 12, 2024. It is now read-only.

Commit eadcec0

Browse files
committed
fix: npm scripts
1 parent ca2be14 commit eadcec0

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@
2222
"coverage": "gulp coverage",
2323
"test": "gulp test",
2424
"test:unit:node": "gulp test:node",
25-
"test:unit:node:core": "TEST=core npm run test:node",
26-
"test:unit:node:http": "TEST=http npm run test:node",
27-
"test:unit:node:cli": "TEST=cli npm run test:node",
25+
"test:unit:node:core": "TEST=core npm run test:unit:node",
26+
"test:unit:node:http": "TEST=http npm run test:unit:node",
27+
"test:unit:node:cli": "TEST=cli npm run test:unit:node",
2828
"test:unit:browser": "gulp test:browser",
2929
"test:interop": "mocha -t 60000 test/interop",
3030
"test:interop:node": "mocha -t 60000 test/interop/node.js",

src/cli/commands/bitswap/wantlist.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ module.exports = {
2626
if (err) {
2727
throw err
2828
}
29-
res.Keys.forEach((k) => console.log(k))
29+
res.Keys.forEach((k) => console.log(k.toString()))
3030
})
3131
})
3232
}

0 commit comments

Comments
 (0)