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

Commit 8f7d821

Browse files
author
Alan Shaw
committed
refactor: remove bootstrap nodes in tests
License: MIT Signed-off-by: Alan Shaw <[email protected]>
1 parent 94cc93f commit 8f7d821

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/exchange-files.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -111,10 +111,10 @@ describe('exchange files', () => {
111111
this.timeout(timeout)
112112

113113
parallel([
114-
(cb) => goDf.spawn({ initOptions: { bits: 1024 } }, cb),
115-
(cb) => goDf.spawn({ initOptions: { bits: 1024 } }, cb),
116-
(cb) => jsDf.spawn({ type: 'js', initOptions: { bits: 512 } }, cb),
117-
(cb) => jsDf.spawn({ type: 'js', initOptions: { bits: 512 } }, cb)
114+
(cb) => goDf.spawn({ initOptions: { bits: 1024 }, config: { Bootstrap: [] } }, cb),
115+
(cb) => goDf.spawn({ initOptions: { bits: 1024 }, config: { Bootstrap: [] } }, cb),
116+
(cb) => jsDf.spawn({ type: 'js', initOptions: { bits: 512 }, config: { Bootstrap: [] } }, cb),
117+
(cb) => jsDf.spawn({ type: 'js', initOptions: { bits: 512 }, config: { Bootstrap: [] } }, cb)
118118
], (err, n) => {
119119
expect(err).to.not.exist()
120120
nodes = n

0 commit comments

Comments
 (0)