Skip to content
This repository has been archived by the owner on Feb 12, 2024. It is now read-only.

Commit

Permalink
chore: disable intermittent failing test
Browse files Browse the repository at this point in the history
  • Loading branch information
Gozala committed Jun 18, 2020
1 parent 3511641 commit 3c78c14
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
15 changes: 11 additions & 4 deletions packages/ipfs-http-client/test/interface.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -59,10 +59,17 @@ describe('interface-ipfs-core tests', () => {
})

tests.block(commonFactory, {
skip: [{
name: 'should get a block added as CIDv1 with a CIDv0',
reason: 'go-ipfs does not support the `version` param'
}]
skip: [
{
name: 'should get a block added as CIDv1 with a CIDv0',
reason: 'go-ipfs does not support the `version` param'
},
{
name: 'should return an error for an invalid CID',
reason:
'Intermittent failure: https://github.com/ipfs/js-ipfs/issues/3100'
}
]
})

tests.bootstrap(commonFactory, {
Expand Down
10 changes: 9 additions & 1 deletion packages/ipfs/test/http-api/interface.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,15 @@ describe('interface-ipfs-core over ipfs-http-client tests', function () {

tests.bitswap(commonFactory)

tests.block(commonFactory)
tests.block(commonFactory, {
skip: [
{
name: 'should return an error for an invalid CID',
reason:
'Intermittent failure: https://github.com/ipfs/js-ipfs/issues/3100'
}
]
})

tests.bootstrap(commonFactory)

Expand Down

0 comments on commit 3c78c14

Please sign in to comment.