From d4a2349735f345592b42f73e5cfae74e7c624acf Mon Sep 17 00:00:00 2001 From: Jacob Heun Date: Fri, 26 Jun 2020 13:13:09 +0200 Subject: [PATCH] test: default to noise in tests --- src/utils.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils.js b/src/utils.js index 435f3cc..cbb48fe 100644 --- a/src/utils.js +++ b/src/utils.js @@ -16,7 +16,7 @@ exports.getMultiaddr = (sockPath, port) => isWindows : ma(`/unix${path.resolve(os.tmpdir(), sockPath)}`) exports.DEFAULT_CONFIG = { - secio: true, - noise: false, + secio: false, + noise: true, dht: false }