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

Commit

Permalink
fix: npm scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddias committed Dec 23, 2016
1 parent ca2be14 commit eadcec0
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/cli/commands/bitswap/wantlist.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()))
})
})
}
Expand Down

0 comments on commit eadcec0

Please sign in to comment.