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

Commit

Permalink
test: disable mdns in exchange files (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobheun authored May 31, 2019
1 parent 184e103 commit 2bd6249
Showing 1 changed file with 23 additions and 2 deletions.
25 changes: 23 additions & 2 deletions test/exchange-files.js
Original file line number Diff line number Diff line change
Expand Up @@ -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', () => {
Expand Down

0 comments on commit 2bd6249

Please sign in to comment.