From ba8dcba2a1dc25233a85b615ffafb245b39e3255 Mon Sep 17 00:00:00 2001 From: David Dias Date: Thu, 16 Feb 2017 11:50:58 +0000 Subject: [PATCH] chore: make sure everything is good with 0.4.5 --- package.json | 10 +++++----- test/ipfs-factory/daemon-spawner.js | 2 +- test/name.spec.js | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/package.json b/package.json index e86096350..b26c9dfae 100644 --- a/package.json +++ b/package.json @@ -45,7 +45,7 @@ "peer-info": "~0.8.3", "promisify-es6": "^1.0.2", "pump": "^1.0.2", - "qs": "^6.3.0", + "qs": "^6.3.1", "readable-stream": "1.1.14", "stream-http": "^2.6.3", "streamifier": "^0.1.1", @@ -62,15 +62,15 @@ "devDependencies": { "aegir": "^10.0.0", "chai": "^3.5.0", - "eslint-plugin-react": "^6.9.0", + "eslint-plugin-react": "^6.10.0", "gulp": "^3.9.1", "hapi": "^16.1.0", "interface-ipfs-core": "~0.24.1", - "ipfsd-ctl": "~0.18.2", + "ipfsd-ctl": "~0.19.0", "pre-commit": "^1.2.2", "socket.io": "^1.7.2", "socket.io-client": "^1.7.2", - "stream-equal": "^0.1.12" + "stream-equal": "^0.1.13" }, "pre-commit": [ "lint", @@ -124,4 +124,4 @@ "url": "https://github.com/ipfs/js-ipfs-api/issues" }, "homepage": "https://github.com/ipfs/js-ipfs-api" -} \ No newline at end of file +} diff --git a/test/ipfs-factory/daemon-spawner.js b/test/ipfs-factory/daemon-spawner.js index 7904ea43e..2e467a0c1 100644 --- a/test/ipfs-factory/daemon-spawner.js +++ b/test/ipfs-factory/daemon-spawner.js @@ -35,7 +35,7 @@ function Factory () { nodes.push(node) - callback(null, node.apiAddr) + callback(null, node.apiAddr.toString()) }) } diff --git a/test/name.spec.js b/test/name.spec.js index 85d8405b7..9e08fd035 100644 --- a/test/name.spec.js +++ b/test/name.spec.js @@ -76,7 +76,7 @@ describe('.name', () => { expect(err).to.not.exist expect(res).to.exist expect(res).to.be.eql({ - Path: '/ipfs/' + name.Value + Path: name.Value }) done() }) @@ -99,7 +99,7 @@ describe('.name', () => { .then((res) => { expect(res).to.exist expect(res).to.be.eql({ - Path: '/ipfs/' + name.Value + Path: name.Value }) }) })