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

Commit 57f309a

Browse files
committedJan 25, 2016
update local-storage-blob-store
1 parent 5e3ca3a commit 57f309a

File tree

3 files changed

+1
-7
lines changed

3 files changed

+1
-7
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
"karma-mocha": "^0.2.1",
4949
"karma-spec-reporter": "0.0.23",
5050
"karma-webpack": "^1.7.0",
51-
"local-storage-blob-store": "0.0.2",
51+
"local-storage-blob-store": "0.0.3",
5252
"lodash": "^4.0.0",
5353
"mocha": "^2.3.4",
5454
"ncp": "^2.0.0",

‎tests/test-core/browser.js

-3
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,6 @@ describe('core', function () {
1313

1414
var repoData = []
1515
repoContext.keys().forEach(function (key) {
16-
// console.log(key)
17-
var value = new Buffer(require('binary!./../repo-example/' + key.replace('./', '')), 'binary')
18-
console.log('+>', value.length)
1916
repoData.push({
2017
key: key.replace('./', ''),
2118
value: new Buffer(require('binary!./../repo-example/' + key.replace('./', '')), 'binary')

‎tests/test-core/test-block.js

-3
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,6 @@ describe('block', () => {
2626
const mh = new Buffer(base58.decode(b58mh))
2727
ipfs.block.get(mh, (err, block) => {
2828
expect(err).to.not.exist
29-
console.log('->', fileA.length)
30-
console.log('->', block.data.length)
31-
3229
const eq = fileA.equals(block.data)
3330
expect(eq).to.equal(true)
3431
done()

0 commit comments

Comments
 (0)