@@ -134,6 +134,7 @@ describe('IPFS Node.js API wrapper tests', function () {
134
134
} )
135
135
136
136
describe ( '.send' , function ( ) {
137
+ it ( 'used by every command' )
137
138
} )
138
139
139
140
describe ( '.add' , function ( ) {
@@ -209,7 +210,9 @@ describe('IPFS Node.js API wrapper tests', function () {
209
210
} )
210
211
} )
211
212
} )
213
+ } )
212
214
215
+ describe ( '.ls' , function ( ) {
213
216
var initDocs = 'Qmcqtw8FfrVSBaRmbWwHxt3AuySBhJLcvmFYi3Lbc4xnwj'
214
217
var initDocsLs = {
215
218
'help' : 'QmY5heUM5qgRubMDD1og9fhCPA6QdkMp3QCwd4s7gJsyE7' ,
@@ -240,11 +243,8 @@ describe('IPFS Node.js API wrapper tests', function () {
240
243
} )
241
244
} )
242
245
243
- describe ( '.ls' , function ( ) {
244
- } )
245
-
246
246
describe ( '.config' , function ( ) {
247
- it ( 'config set/ get' , function ( done ) {
247
+ it ( '. config.{ set, get} ' , function ( done ) {
248
248
this . timeout ( 10000 )
249
249
250
250
var confKey = 'arbitraryKey'
@@ -259,9 +259,15 @@ describe('IPFS Node.js API wrapper tests', function () {
259
259
} )
260
260
} )
261
261
} )
262
+
263
+ it ( '.config.show' )
264
+ it ( '.config.replace' )
262
265
} )
263
266
264
267
describe ( '.update' , function ( ) {
268
+ it ( '.update.apply' )
269
+ it ( '.update.check' )
270
+ it ( '.update.log' )
265
271
} )
266
272
267
273
describe ( '.version' , function ( ) {
@@ -274,6 +280,7 @@ describe('IPFS Node.js API wrapper tests', function () {
274
280
} )
275
281
276
282
describe ( '.diag' , function ( ) {
283
+ it ( '.diag.net' )
277
284
} )
278
285
279
286
describe ( '.block' , function ( ) {
@@ -365,9 +372,17 @@ describe('IPFS Node.js API wrapper tests', function () {
365
372
} )
366
373
} )
367
374
} )
375
+
376
+ it ( 'object.stat' )
377
+ it ( 'object.links' )
368
378
} )
369
379
370
380
describe ( '.swarm' , function ( ) {
381
+ it ( '.swarm.peers' )
382
+ it ( '.swarm.connect' , function ( done ) {
383
+ // Done in the before part
384
+ done ( )
385
+ } )
371
386
} )
372
387
373
388
describe ( '.ping' , function ( ) {
@@ -387,15 +402,23 @@ describe('IPFS Node.js API wrapper tests', function () {
387
402
} )
388
403
389
404
describe ( '.pin' , function ( ) {
405
+ it ( '.pin.add' )
406
+ it ( '.pin.remove' )
407
+ it ( '.pin.list' )
390
408
} )
391
409
392
410
describe ( '.gateway' , function ( ) {
411
+ it ( '.gateway.disable' )
412
+ it ( '.gateway.enable' )
393
413
} )
394
414
395
415
describe ( '.log' , function ( ) {
416
+ it ( '.log.tail' )
396
417
} )
397
418
398
419
describe ( '.name' , function ( ) {
420
+ it ( '.name.publish' )
421
+ it ( '.name.resolve' )
399
422
} )
400
423
401
424
describe ( '.refs' , function ( ) {
@@ -453,6 +476,8 @@ describe('IPFS Node.js API wrapper tests', function () {
453
476
} )
454
477
} )
455
478
} )
479
+
480
+ it ( '.dht.findproovs' )
456
481
} )
457
482
458
483
describe ( 'closing tests' , function ( ) {
0 commit comments