Skip to content
This repository was archived by the owner on Aug 1, 2023. It is now read-only.

Commit 2bd6249

Browse files
authored
test: disable mdns in exchange files (#70)
1 parent 184e103 commit 2bd6249

File tree

1 file changed

+23
-2
lines changed

1 file changed

+23
-2
lines changed

test/exchange-files.js

+23-2
Original file line numberDiff line numberDiff line change
@@ -100,11 +100,32 @@ const min = 60 * 1000
100100
const timeout = isCi ? 8 * min : 5 * min
101101

102102
function createJs (cb) {
103-
jsDf.spawn({ type: 'js', initOptions: { bits: 512 }, config: { Bootstrap: [] } }, cb)
103+
jsDf.spawn({
104+
type: 'js',
105+
initOptions: { bits: 512 },
106+
config: {
107+
Bootstrap: [],
108+
Discovery: {
109+
MDNS: {
110+
Enabled: false
111+
}
112+
}
113+
}
114+
}, cb)
104115
}
105116

106117
function createGo (cb) {
107-
goDf.spawn({ initOptions: { bits: 1024 }, config: { Bootstrap: [] } }, cb)
118+
goDf.spawn({
119+
initOptions: { bits: 1024 },
120+
config: {
121+
Bootstrap: [],
122+
Discovery: {
123+
MDNS: {
124+
Enabled: false
125+
}
126+
}
127+
}
128+
}, cb)
108129
}
109130

110131
describe('exchange files', () => {

0 commit comments

Comments
 (0)