diff --git a/test/exchange-files.js b/test/exchange-files.js index 2510345e..bfde1b75 100644 --- a/test/exchange-files.js +++ b/test/exchange-files.js @@ -100,11 +100,32 @@ const min = 60 * 1000 const timeout = isCi ? 8 * min : 5 * min function createJs (cb) { - jsDf.spawn({ type: 'js', initOptions: { bits: 512 }, config: { Bootstrap: [] } }, cb) + jsDf.spawn({ + type: 'js', + initOptions: { bits: 512 }, + config: { + Bootstrap: [], + Discovery: { + MDNS: { + Enabled: false + } + } + } + }, cb) } function createGo (cb) { - goDf.spawn({ initOptions: { bits: 1024 }, config: { Bootstrap: [] } }, cb) + goDf.spawn({ + initOptions: { bits: 1024 }, + config: { + Bootstrap: [], + Discovery: { + MDNS: { + Enabled: false + } + } + } + }, cb) } describe('exchange files', () => {