Skip to content
This repository has been archived by the owner on Mar 10, 2020. It is now read-only.

Commit

Permalink
fix: skip bitswap offline tests on all platforms
Browse files Browse the repository at this point in the history
The offline tests create and stop a node. ipfs/kubo#4078 seems to not only be restricted to windows.

License: MIT
Signed-off-by: Alan Shaw <alan@tableflip.io>
  • Loading branch information
alanshaw committed Jul 4, 2018
1 parent c53d3cd commit 1781f2a
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions test/interface.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,24 +13,24 @@ describe('interface-ipfs-core tests', () => {
tests.bitswap(defaultCommonFactory, {
skip: [
// bitswap.stat
isWindows ? {
{
name: 'should not get bitswap stats when offline',
reason: 'FIXME go-ipfs returns an error https://github.com/ipfs/go-ipfs/issues/4078'
} : null,
},
// bitswap.wantlist
isWindows ? {
{
name: 'should not get the wantlist when offline',
reason: 'FIXME go-ipfs returns an error https://github.com/ipfs/go-ipfs/issues/4078'
} : null,
},
// bitswap.unwant
{
name: 'should remove a key from the wantlist',
reason: 'FIXME why is this skipped?'
},
isWindows ? {
{
name: 'should not remove a key from the wantlist when offline',
reason: 'FIXME go-ipfs returns an error https://github.com/ipfs/go-ipfs/issues/4078'
} : null
}
]
})

Expand Down

0 comments on commit 1781f2a

Please sign in to comment.