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 = []