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

Commit

Permalink
fix: re-revert change to bitswap.spec.js wpspec.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Alan Shaw committed May 21, 2019
1 parent 5db71fc commit d8cf619
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/core/bitswap.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ const multiaddr = require('multiaddr')
const isNode = require('detect-node')
const multihashing = require('multihashing-async')
const CID = require('cids')
const path = require('path')
const IPFSFactory = require('ipfsd-ctl')

const IPFS = require('../../src/core')
Expand Down Expand Up @@ -63,7 +64,7 @@ let nodes = []

function addNode (fDaemon, inProcNode, callback) {
fDaemon.spawn({
exec: './src/cli/bin.js',
exec: isNode ? path.resolve(`${__dirname}/../../src/cli/bin.js`) : './src/cli/bin.js',
initOptions: { bits: 512 },
config: {
Addresses: {
Expand Down

0 comments on commit d8cf619

Please sign in to comment.