settings: fix tests
This commit is contained in:
parent
89c74aa6e4
commit
63423d92ed
2 changed files with 6 additions and 3 deletions
|
|
@ -11,10 +11,11 @@ var io = require('socket.io-client');
|
|||
var preconditions = require('preconditions').singleton();
|
||||
|
||||
function Network(opts) {
|
||||
var self = this;
|
||||
preconditions.checkArgument(opts);
|
||||
preconditions.checkArgument(opts.url);
|
||||
opts = opts || {};
|
||||
this.maxPeers = opts.maxPeers || 12;
|
||||
this.url = opts.url || 'http//localhost:30001';
|
||||
this.url = opts.url;
|
||||
this.secretNumber = opts.secretNumber;
|
||||
this.cleanUp();
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue