diff --git a/src/core/runtime/libp2p-nodejs.js b/src/core/runtime/libp2p-nodejs.js index 4f11036a86..21e709b0f2 100644 --- a/src/core/runtime/libp2p-nodejs.js +++ b/src/core/runtime/libp2p-nodejs.js @@ -54,9 +54,9 @@ class Node extends libp2p { }, dht: { kBucketSize: 20, - enabled: true, + enabled: false, randomWalk: { - enabled: true + enabled: false } }, EXPERIMENTAL: { diff --git a/test/core/interface.spec.js b/test/core/interface.spec.js index 8134ffc702..9a59921b61 100644 --- a/test/core/interface.spec.js +++ b/test/core/interface.spec.js @@ -101,11 +101,15 @@ describe('interface-ipfs-core tests', function () { skip: [ { name: 'should resolve an IPNS DNS link', - reason: 'TODO IPNS not implemented yet' + reason: 'TODO: IPNS resolve not yet implemented https://github.com/ipfs/js-ipfs/issues/1918' }, { name: 'should resolve IPNS link recursively', - reason: 'TODO IPNS not implemented yet' + reason: 'TODO: IPNS resolve not yet implemented https://github.com/ipfs/js-ipfs/issues/1918' + }, + { + name: 'should recursively resolve ipfs.io', + reason: 'TODO: ipfs.io dnslink=/ipns/website.ipfs.io & IPNS resolve not yet implemented https://github.com/ipfs/js-ipfs/issues/1918' } ] }) diff --git a/test/http-api/interface.js b/test/http-api/interface.js index c72a6529b5..a33309b6c3 100644 --- a/test/http-api/interface.js +++ b/test/http-api/interface.js @@ -81,11 +81,15 @@ describe('interface-ipfs-core over ipfs-http-client tests', () => { skip: [ { name: 'should resolve an IPNS DNS link', - reason: 'TODO IPNS not implemented yet' + reason: 'TODO: IPNS resolve not yet implemented https://github.com/ipfs/js-ipfs/issues/1918' }, { name: 'should resolve IPNS link recursively', - reason: 'TODO IPNS not implemented yet' + reason: 'TODO: IPNS resolve not yet implemented https://github.com/ipfs/js-ipfs/issues/1918' + }, + { + name: 'should recursively resolve ipfs.io', + reason: 'TODO: ipfs.io dnslink=/ipns/website.ipfs.io & IPNS resolve not yet implemented https://github.com/ipfs/js-ipfs/issues/1918' } ] })