diff --git a/package.json b/package.json index 7ac53e4b..fdf5a335 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,7 @@ "form-data": "^2.3.3", "go-ipfs-dep": "~0.4.19", "hat": "0.0.3", - "ipfs": "~0.35.0", + "ipfs": "ipfs/js-ipfs#refactor/enable-dht", "ipfs-http-client": "^30.1.1", "ipfs-repo": "~0.26.1", "ipfs-unixfs": "~0.1.16", diff --git a/test/ipns-dht.js b/test/ipns-dht.js index b0f4dcdb..b53bff20 100644 --- a/test/ipns-dht.js +++ b/test/ipns-dht.js @@ -8,9 +8,6 @@ chai.use(dirtyChai) const series = require('async/series') const parallel = require('async/parallel') -const os = require('os') -const path = require('path') -const hat = require('hat') const DaemonFactory = require('ipfsd-ctl') @@ -21,7 +18,6 @@ const spawnJsDaemon = (callback) => { .spawn({ disposable: true, initOptions: { bits: 512 }, - args: ['--enable-dht-experiment'], // enable dht config: { Bootstrap: [] } }, callback) } @@ -35,7 +31,7 @@ const spawnGoDaemon = (callback) => { }, callback) } -describe.only('ipns over dht', () => { +describe('ipns over dht', () => { let nodeAId let nodeBId let nodes = []