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

chore: test against latest go-ipfs #590

Merged
merged 5 commits into from
Sep 2, 2017
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@
"eslint-plugin-react": "^7.3.0",
"gulp": "^3.9.1",
"hapi": "^16.5.2",
"interface-ipfs-core": "~0.31.12",
"ipfsd-ctl": "~0.21.0",
"interface-ipfs-core": "~0.31.16",
"ipfsd-ctl": "~0.22.0",
"pre-commit": "^1.2.2",
"socket.io": "^2.0.3",
"socket.io-client": "^2.0.3",
Expand Down
6 changes: 4 additions & 2 deletions test/diag.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,8 @@ describe('.diag', () => {
after((done) => fc.dismantle(done))

describe('Callback API', () => {
it('.diag.net', (done) => {
// Disabled in go-ipfs 0.4.10
it.skip('.diag.net', (done) => {
ipfs.diag.net((err, res) => {
expect(err).to.not.exist()
expect(res).to.exist()
Expand Down Expand Up @@ -52,7 +53,8 @@ describe('.diag', () => {
})

describe('Promise API', () => {
it('.diag.net', () => {
// Disabled in go-ipfs 0.4.10
it.skip('.diag.net', () => {
return ipfs.diag.net()
.then((res) => expect(res).to.exist())
})
Expand Down
2 changes: 1 addition & 1 deletion test/name.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ describe('.name', () => {
let fc

before(function (done) {
this.timeout(20 * 1000) // slow CI
this.timeout(50 * 1000) // slow CI
fc = new FactoryClient()
series([
(cb) => {
Expand Down