Skip to content
This repository has been archived by the owner on Mar 10, 2020. It is now read-only.

test(ping): add interface-core-api ping tests and fix impl #768

Merged
merged 9 commits into from
May 20, 2018
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -72,14 +72,14 @@
},
"devDependencies": {
"aegir": "^13.1.0",
"browser-process-platform": "^0.1.1",
"browser-process-platform": "~0.1.1",
"chai": "^4.1.2",
"cross-env": "^5.1.5",
"dirty-chai": "^2.0.1",
"eslint-plugin-react": "^7.8.1",
"go-ipfs-dep": "^0.4.14",
"go-ipfs-dep": "~0.4.14",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

You can now update this to 0.4.15 and also update ipfsd-ctl :)

"gulp": "^3.9.1",
"interface-ipfs-core": "^0.66.0",
"interface-ipfs-core": "~0.66.1",
"ipfs": "~0.28.2",
"ipfsd-ctl": "~0.33.2",
"pull-stream": "^3.6.8",
Expand Down
2 changes: 1 addition & 1 deletion test/get.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ describe('.get (specific go-ipfs features)', function () {
'compression-level': 10
}, (err, files) => {
expect(err).to.exist()
expect(err.toString()).to.equal('Error: Compression level must be between 1 and 9')
expect(err.toString()).to.equal('Error: compression level must be between 1 and 9')
done()
})
})
Expand Down