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

gotta get green #1354

Merged
merged 6 commits into from
May 15, 2018
Merged
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@
"expose-loader": "^0.7.5",
"form-data": "^2.3.2",
"hat": "0.0.3",
"interface-ipfs-core": "~0.65.5",
"interface-ipfs-core": "~0.65.7",
"ipfsd-ctl": "~0.34.0",
"lodash": "^4.17.10",
"mocha": "^5.1.1",
Expand Down Expand Up @@ -132,7 +132,7 @@
"libp2p-railing": "~0.8.1",
"libp2p-secio": "~0.10.0",
"libp2p-tcp": "~0.12.0",
"libp2p-webrtc-star": "~0.14.0",
"libp2p-webrtc-star": "~0.15.0",
"libp2p-websocket-star": "~0.8.0",
"libp2p-websockets": "~0.12.0",
"lodash.flatmap": "^4.5.0",
Expand Down
10 changes: 6 additions & 4 deletions test/core/interface/files.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,16 +6,18 @@ const parallel = require('async/parallel')

const IPFS = require('../../../src')

const DaemonFactory = require('ipfsd-ctl')
const df = DaemonFactory.create({ type: 'proc', exec: IPFS })
const IPFSFactory = require('ipfsd-ctl')
const f = IPFSFactory.create({ type: 'proc', exec: IPFS })

const nodes = []
const common = {
setup: function (callback) {
callback(null, {
spawnNode: (cb) => {
df.spawn({
initOptions: { bits: 512 }
f.spawn({
initOptions: {
bits: 512
}
}, (err, _ipfsd) => {
if (err) {
return cb(err)
Expand Down