This repository was archived by the owner on Feb 12, 2024. It is now read-only.
File tree 2 files changed +44
-2
lines changed
2 files changed +44
-2
lines changed 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 : {
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 : {
You can’t perform that action at this time.
0 commit comments