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

Commit 40c8f10

Browse files
authored
feat: test against latest go-ipfs (#590)
1 parent af17331 commit 40c8f10

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666
"eslint-plugin-react": "^7.3.0",
6767
"gulp": "^3.9.1",
6868
"hapi": "^16.5.2",
69-
"interface-ipfs-core": "~0.31.12",
70-
"ipfsd-ctl": "~0.21.0",
69+
"interface-ipfs-core": "~0.31.16",
70+
"ipfsd-ctl": "~0.22.0",
7171
"pre-commit": "^1.2.2",
7272
"socket.io": "^2.0.3",
7373
"socket.io-client": "^2.0.3",

test/diag.spec.js

+4-2
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ describe('.diag', () => {
2424
after((done) => fc.dismantle(done))
2525

2626
describe('Callback API', () => {
27-
it('.diag.net', (done) => {
27+
// Disabled in go-ipfs 0.4.10
28+
it.skip('.diag.net', (done) => {
2829
ipfs.diag.net((err, res) => {
2930
expect(err).to.not.exist()
3031
expect(res).to.exist()
@@ -52,7 +53,8 @@ describe('.diag', () => {
5253
})
5354

5455
describe('Promise API', () => {
55-
it('.diag.net', () => {
56+
// Disabled in go-ipfs 0.4.10
57+
it.skip('.diag.net', () => {
5658
return ipfs.diag.net()
5759
.then((res) => expect(res).to.exist())
5860
})

test/name.spec.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ describe('.name', () => {
2020
let fc
2121

2222
before(function (done) {
23-
this.timeout(20 * 1000) // slow CI
23+
this.timeout(50 * 1000) // slow CI
2424
fc = new FactoryClient()
2525
series([
2626
(cb) => {

0 commit comments

Comments
 (0)