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

Commit e14d92b

Browse files
committed
feat: skip unimplemented files tests and add ls* tests
License: MIT Signed-off-by: Alan Shaw <[email protected]>
1 parent 7ea9885 commit e14d92b

File tree

1 file changed

+13
-1
lines changed

1 file changed

+13
-1
lines changed

test/interface.spec.js

+13-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,17 @@ describe('interface-ipfs-core tests', () => {
5757
]
5858
})
5959

60-
tests.files(defaultCommonFactory)
60+
tests.files(defaultCommonFactory, {
61+
skip: [
62+
// files.catPullStream
63+
//
64+
// FIXME not implemented in go-ipfs yet
65+
'should export a chunk of a file',
66+
'should export a chunk of a file in a Pull Stream',
67+
'should export a chunk of a file in a Readable Stream'
68+
],
69+
only: true
70+
})
6171

6272
tests.generic(CommonFactory.create({
6373
// No need to stop, because the test suite does a 'stop' test.
@@ -66,6 +76,8 @@ describe('interface-ipfs-core tests', () => {
6676

6777
tests.key(defaultCommonFactory)
6878

79+
tests.ls(defaultCommonFactory)
80+
6981
tests.object(defaultCommonFactory)
7082

7183
tests.ping(defaultCommonFactory)

0 commit comments

Comments
 (0)