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

Commit 0e15761

Browse files
author
Alan Shaw
committed
fix: skip test that go-ipfs cannot pass
For some reason go-ipfs does not support a `version` parameter in the `/api/v0/block/put` endpoint but js-ipfs does. This means that go-ipfs cannot pass this skipped CID version agnostic test. When IPFS switches to v1 CIDs by default we'll have to switch this skipped test to the one that tests the other way around i.e. CIDv0 to CIDv1. License: MIT Signed-off-by: Alan Shaw <alan.shaw@protocol.ai>
1 parent 98bf3d7 commit 0e15761

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

test/interface.spec.js

+6-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,12 @@ describe('interface-ipfs-core tests', () => {
3434
]
3535
})
3636

37-
tests.block(defaultCommonFactory)
37+
tests.block(defaultCommonFactory, {
38+
skip: [{
39+
name: 'should get a block added as CIDv1 with a CIDv0',
40+
reason: 'go-ipfs does not support the `version` param'
41+
}]
42+
})
3843

3944
tests.bootstrap(defaultCommonFactory)
4045

0 commit comments

Comments
 (0)