Skip to content
This repository has been archived by the owner on Apr 29, 2020. It is now read-only.

Commit

Permalink
test: disable mdns
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddias committed Apr 6, 2017
1 parent 9f56eca commit 0b723b0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/content-routing.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe('.contentRouting', () => {

before((done) => {
const tasks = _times(5, () => (cb) => {
createNode('/ip4/0.0.0.0/tcp/0', (err, node) => {
createNode('/ip4/0.0.0.0/tcp/0', { mdns: false }, (err, node) => {
expect(err).to.not.exist()
node.start((err) => cb(err, node))
})
Expand Down
2 changes: 1 addition & 1 deletion test/peer-routing.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ describe.only('.peerRouting', () => {

before((done) => {
const tasks = _times(5, () => (cb) => {
createNode('/ip4/0.0.0.0/tcp/0', (err, node) => {
createNode('/ip4/0.0.0.0/tcp/0', { mdns: false }, (err, node) => {
expect(err).to.not.exist()
node.start((err) => cb(err, node))
})
Expand Down

0 comments on commit 0b723b0

Please sign in to comment.