This repository was archived by the owner on Feb 12, 2024. It is now read-only.
File tree 3 files changed +7
-5
lines changed
3 files changed +7
-5
lines changed Original file line number Diff line number Diff line change 66
66
"eslint-plugin-react" : " ^7.3.0" ,
67
67
"gulp" : " ^3.9.1" ,
68
68
"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" ,
71
71
"pre-commit" : " ^1.2.2" ,
72
72
"socket.io" : " ^2.0.3" ,
73
73
"socket.io-client" : " ^2.0.3" ,
Original file line number Diff line number Diff line change @@ -24,7 +24,8 @@ describe('.diag', () => {
24
24
after ( ( done ) => fc . dismantle ( done ) )
25
25
26
26
describe ( 'Callback API' , ( ) => {
27
- it ( '.diag.net' , ( done ) => {
27
+ // Disabled in go-ipfs 0.4.10
28
+ it . skip ( '.diag.net' , ( done ) => {
28
29
ipfs . diag . net ( ( err , res ) => {
29
30
expect ( err ) . to . not . exist ( )
30
31
expect ( res ) . to . exist ( )
@@ -52,7 +53,8 @@ describe('.diag', () => {
52
53
} )
53
54
54
55
describe ( 'Promise API' , ( ) => {
55
- it ( '.diag.net' , ( ) => {
56
+ // Disabled in go-ipfs 0.4.10
57
+ it . skip ( '.diag.net' , ( ) => {
56
58
return ipfs . diag . net ( )
57
59
. then ( ( res ) => expect ( res ) . to . exist ( ) )
58
60
} )
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ describe('.name', () => {
20
20
let fc
21
21
22
22
before ( function ( done ) {
23
- this . timeout ( 20 * 1000 ) // slow CI
23
+ this . timeout ( 50 * 1000 ) // slow CI
24
24
fc = new FactoryClient ( )
25
25
series ( [
26
26
( cb ) => {
You can’t perform that action at this time.
0 commit comments