Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit 60725cd

Browse files
committed
fix: code review
1 parent 68c2b97 commit 60725cd

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"form-data": "^2.3.3",
5151
"go-ipfs-dep": "~0.4.19",
5252
"hat": "0.0.3",
53-
"ipfs": "~0.35.0",
53+
"ipfs": "ipfs/js-ipfs#refactor/enable-dht",
5454
"ipfs-http-client": "^30.1.1",
5555
"ipfs-repo": "~0.26.1",
5656
"ipfs-unixfs": "~0.1.16",

test/ipns-dht.js

+1-5
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,6 @@ chai.use(dirtyChai)
88

99
const series = require('async/series')
1010
const parallel = require('async/parallel')
11-
const os = require('os')
12-
const path = require('path')
13-
const hat = require('hat')
1411

1512
const DaemonFactory = require('ipfsd-ctl')
1613

@@ -21,7 +18,6 @@ const spawnJsDaemon = (callback) => {
2118
.spawn({
2219
disposable: true,
2320
initOptions: { bits: 512 },
24-
args: ['--enable-dht-experiment'], // enable dht
2521
config: { Bootstrap: [] }
2622
}, callback)
2723
}
@@ -35,7 +31,7 @@ const spawnGoDaemon = (callback) => {
3531
}, callback)
3632
}
3733

38-
describe.only('ipns over dht', () => {
34+
describe('ipns over dht', () => {
3935
let nodeAId
4036
let nodeBId
4137
let nodes = []

0 commit comments

Comments
 (0)