settings: fix tests

This commit is contained in:
Manuel Araoz 2014-09-11 10:15:00 -07:00
commit 63423d92ed
2 changed files with 6 additions and 3 deletions

View file

@ -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();
}