This repository was archived by the owner on Feb 12, 2024. It is now read-only.
File tree 3 files changed +62
-6
lines changed
3 files changed +62
-6
lines changed Original file line number Diff line number Diff line change 70
70
"expose-loader" : " ~0.7.5" ,
71
71
"form-data" : " ^2.3.2" ,
72
72
"hat" : " 0.0.3" ,
73
- "interface-ipfs-core" : " ~0.72 .1" ,
74
- "ipfsd-ctl" : " ~0.38 .0" ,
73
+ "interface-ipfs-core" : " ~0.75 .1" ,
74
+ "ipfsd-ctl" : " ~0.39 .0" ,
75
75
"mocha" : " ^5.2.0" ,
76
76
"ncp" : " ^2.0.0" ,
77
77
"nexpect" : " ~0.5.0" ,
Original file line number Diff line number Diff line change @@ -22,7 +22,28 @@ describe('interface-ipfs-core tests', () => {
22
22
skip : { reason : 'TODO: DHT is not implemented in js-ipfs yet!' }
23
23
} )
24
24
25
- tests . files ( defaultCommonFactory )
25
+ tests . files ( defaultCommonFactory , {
26
+ skip : [
27
+ // files.ls
28
+ {
29
+ name : 'should ls directory' ,
30
+ reason : 'FIXME: https://github.com/ipfs/js-ipfs-mfs/issues/7'
31
+ } ,
32
+ {
33
+ name : 'should ls -l directory' ,
34
+ reason : 'FIXME: https://github.com/ipfs/js-ipfs-mfs/issues/7'
35
+ } ,
36
+ // files.read*Stream
37
+ {
38
+ name : 'readPullStream' ,
39
+ reason : 'FIXME: https://github.com/ipfs/js-ipfs-mfs/issues/8'
40
+ } ,
41
+ {
42
+ name : 'readReadableStream' ,
43
+ reason : 'FIXME: https://github.com/ipfs/js-ipfs-mfs/issues/8'
44
+ }
45
+ ]
46
+ } )
26
47
27
48
tests . key ( CommonFactory . create ( {
28
49
spawnOptions : {
@@ -36,7 +57,14 @@ describe('interface-ipfs-core tests', () => {
36
57
tests . miscellaneous ( CommonFactory . create ( {
37
58
// No need to stop, because the test suite does a 'stop' test.
38
59
createTeardown : ( ) => cb => cb ( )
39
- } ) )
60
+ } ) , {
61
+ skip : [
62
+ {
63
+ name : 'resolve' ,
64
+ reason : 'TODO: not implemented'
65
+ }
66
+ ]
67
+ } )
40
68
41
69
tests . object ( defaultCommonFactory )
42
70
Original file line number Diff line number Diff line change @@ -25,7 +25,28 @@ describe('interface-ipfs-core over ipfs-api tests', () => {
25
25
skip : { reason : 'TODO: DHT is not implemented in js-ipfs yet!' }
26
26
} )
27
27
28
- tests . files ( defaultCommonFactory )
28
+ tests . files ( defaultCommonFactory , {
29
+ skip : [
30
+ // files.ls
31
+ {
32
+ name : 'should ls directory' ,
33
+ reason : 'FIXME: https://github.com/ipfs/js-ipfs-mfs/issues/7'
34
+ } ,
35
+ {
36
+ name : 'should ls -l directory' ,
37
+ reason : 'FIXME: https://github.com/ipfs/js-ipfs-mfs/issues/7'
38
+ } ,
39
+ // files.read*Stream
40
+ {
41
+ name : 'readPullStream' ,
42
+ reason : 'FIXME: https://github.com/ipfs/js-ipfs-mfs/issues/8'
43
+ } ,
44
+ {
45
+ name : 'readReadableStream' ,
46
+ reason : 'FIXME: https://github.com/ipfs/js-ipfs-mfs/issues/8'
47
+ }
48
+ ]
49
+ } )
29
50
30
51
tests . key ( CommonFactory . create ( {
31
52
spawnOptions : {
@@ -37,7 +58,14 @@ describe('interface-ipfs-core over ipfs-api tests', () => {
37
58
tests . miscellaneous ( CommonFactory . create ( {
38
59
// No need to stop, because the test suite does a 'stop' test.
39
60
createTeardown : ( ) => cb => cb ( )
40
- } ) )
61
+ } ) , {
62
+ skip : [
63
+ {
64
+ name : 'resolve' ,
65
+ reason : 'TODO: not implemented'
66
+ }
67
+ ]
68
+ } )
41
69
42
70
tests . object ( defaultCommonFactory )
43
71
You can’t perform that action at this time.
0 commit comments