File tree Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Expand file tree Collapse file tree 1 file changed +15
-1
lines changed Original file line number Diff line number Diff line change @@ -12,11 +12,25 @@ describe('interface-ipfs-core tests', () => {
12
12
13
13
tests . bitswap ( defaultCommonFactory , {
14
14
skip : [
15
+ // bitswap.stat
16
+ isWindows ? {
17
+ name : 'should not get bitswap stats when offline' ,
18
+ reason : 'FIXME go-ipfs returns an error https://github.com/ipfs/go-ipfs/issues/4078'
19
+ } : null ,
20
+ // bitswap.wantlist
21
+ isWindows ? {
22
+ name : 'should not get the wantlist when offline' ,
23
+ reason : 'FIXME go-ipfs returns an error https://github.com/ipfs/go-ipfs/issues/4078'
24
+ } : null ,
15
25
// bitswap.unwant
16
26
{
17
27
name : 'should remove a key from the wantlist' ,
18
28
reason : 'FIXME why is this skipped?'
19
- }
29
+ } ,
30
+ isWindows ? {
31
+ name : 'should not remove a key from the wantlist when offline' ,
32
+ reason : 'FIXME go-ipfs returns an error https://github.com/ipfs/go-ipfs/issues/4078'
33
+ } : null
20
34
]
21
35
} )
22
36
You can’t perform that action at this time.
0 commit comments