This repository was archived by the owner on Feb 12, 2024. It is now read-only.
File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ module.exports = {
20
20
default : false
21
21
} )
22
22
. option ( 'offline' , {
23
+ type : 'boolean' ,
23
24
desc : 'Run offline. Do not connect to the rest of the network but provide local API.' ,
24
25
default : false
25
26
} )
Original file line number Diff line number Diff line change @@ -9,13 +9,15 @@ module.exports = {
9
9
10
10
builder : {
11
11
nocache : {
12
+ type : 'boolean' ,
12
13
alias : 'n' ,
13
14
describe : 'Do not use cached entries. Default: false.' ,
14
15
default : false
15
16
} ,
16
17
recursive : {
18
+ type : 'boolean' ,
17
19
alias : 'r' ,
18
- recursive : 'Resolve until the result is not an IPNS name. Default: false.' ,
20
+ describe : 'Resolve until the result is not an IPNS name. Default: false.' ,
19
21
default : false
20
22
}
21
23
} ,
Original file line number Diff line number Diff line change @@ -158,8 +158,7 @@ describe('name', () => {
158
158
} )
159
159
} )
160
160
161
- // FIXME: currently failing, resolve before 0.35 release!
162
- it . skip ( 'should go recursively until finding an ipfs hash' , function ( ) {
161
+ it ( 'should go recursively until finding an ipfs hash' , function ( ) {
163
162
this . timeout ( 90 * 1000 )
164
163
165
164
return ipfs ( `name publish ${ cidAdded } ` )
You can’t perform that action at this time.
0 commit comments