Browse Source

fixed various test problems

patch-2
Manuel Araoz 11 years ago
parent
commit
1dcd941331
  1. 1
      bitcore.js
  2. 4
      test/test.Connection.js

1
bitcore.js

@ -18,6 +18,7 @@ module.exports.Transaction = require('./Transaction');
module.exports.Peer = require('./Peer');
module.exports.Block = require('./Block');
module.exports.Connection = require('./Connection');
module.exports.ScriptInterpreter = require('./ScriptInterpreter');
if (typeof process.versions === 'undefined') {

4
test/test.Connection.js

@ -7,6 +7,7 @@ var should = chai.should();
var ConnectionModule = bitcore.Connection;
var Connection;
var nop = function() {};
describe('Connection', function() {
it('should initialze the main object', function() {
@ -17,7 +18,8 @@ describe('Connection', function() {
should.exist(Connection);
});
it('should be able to create instance', function() {
var mSocket, mPeer;
var mSocket = {server: null, addListener: nop},
mPeer;
var c = new Connection(mSocket, mPeer);
should.exist(c);
});

Loading…
Cancel
Save