From e2222beb30a2bf643695acb71928f24b15c34bc6 Mon Sep 17 00:00:00 2001 From: achingbrain Date: Mon, 7 Oct 2019 21:21:05 +0100 Subject: [PATCH] fix: fix up pubsub tests js-IPFS v0.38.0 shipped with pubsub enabled by default so it's no long necessary to pass the enable-pubsub flag to the daemon. --- package.json | 2 +- test/pubsub.js | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index 7c6da434..6e17316b 100644 --- a/package.json +++ b/package.json @@ -54,7 +54,7 @@ "form-data": "^2.3.3", "go-ipfs-dep": "~0.4.20", "hat": "~0.0.3", - "ipfs": "^0.37.0", + "ipfs": "^0.38.0", "ipfs-http-client": "^33.1.0", "ipfs-repo": "~0.26.6", "ipfs-unixfs": "~0.1.16", diff --git a/test/pubsub.js b/test/pubsub.js index 686cbbc5..4cf99c57 100644 --- a/test/pubsub.js +++ b/test/pubsub.js @@ -37,7 +37,7 @@ const waitForTopicPeer = (topic, peer, daemon, callback) => { const timeout = 20e3 function createJs () { - return spawnInitAndStartJsDaemon({ args: ['--enable-pubsub-experiment'] }) + return spawnInitAndStartJsDaemon() } function createGo () { return spawnInitAndStartGoDaemon({ args: ['--enable-pubsub-experiment'] })