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

Commit 7e01905

Browse files
committed
fix: skip tests that do not pass on js-ipfs yet
License: MIT Signed-off-by: Alan Shaw <[email protected]>
1 parent 5e6db6d commit 7e01905

File tree

1 file changed

+12
-1
lines changed

1 file changed

+12
-1
lines changed

test/http-api/interface.js

Lines changed: 12 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,18 @@ describe('interface-ipfs-core over ipfs-api tests', () => {
3737
tests.miscellaneous(CommonFactory.create({
3838
// No need to stop, because the test suite does a 'stop' test.
3939
createTeardown: () => cb => cb()
40-
}))
40+
}), {
41+
skip: [
42+
{
43+
name: 'should resolve an IPNS DNS link',
44+
reason: 'TODO IPNS not implemented yet'
45+
},
46+
{
47+
name: 'should resolve IPNS link recursively',
48+
reason: 'TODO IPNS not implemented yet'
49+
}
50+
]
51+
})
4152

4253
tests.object(defaultCommonFactory)
4354

0 commit comments

Comments
 (0)