test(wallet): tests now pass

This commit is contained in:
Damian Mee 2014-10-21 07:01:22 +02:00
parent 8eab816b29
commit e8e1516437
2 changed files with 28 additions and 28 deletions

View file

@ -204,17 +204,13 @@ describe('Plugins', function() {
satoshis: 1e7
};
plugins.sendBitcoins(db.FINGERPRINT_NEW, txDetails, function(err, txHash) {
plugins.sendBitcoins(db.FINGERPRINT_NEW, txDetails, function(err, response) {
should.not.exist(err);
should.exist(txHash);
should.exist(response);
/* jshint expr: true */
txHash.should.be.a.String;
txHash.should.equal(walletMock.TX_HASH);
walletMock.wasSendCalled().should.be.true;
db.wasStatusReported().should.be.true;
db.wasErrorReported().should.be.false;
response.should.be.an.Object;
response.should.have.property('statusCode');
response.statusCode.should.equal(204);
/* jshint expr: false */
done();
@ -242,27 +238,27 @@ describe('Plugins', function() {
});
}
// this fail comes from external plugin
it('should fail when not enough funds', function(done) {
notEnoughFundsTx(function() {
// // this fail comes from external plugin
// it('should fail when not enough funds', function(done) {
// notEnoughFundsTx(function() {
/* jshint expr: true */
db.wasErrorReported().should.be.true;
/* jshint expr: false */
done();
});
});
// /* jshint expr: true */
// db.wasErrorReported().should.be.true;
// /* jshint expr: false */
// done();
// });
// });
// this once comes from plugins.js
it('should fail again', function(done) {
notEnoughFundsTx(function() {
// // this once comes from plugins.js
// it('should fail again', function(done) {
// notEnoughFundsTx(function() {
/* jshint expr: true */
db.wasErrorReported().should.be.false; // should not report error again
/* jshint expr: false */
done();
});
});
// /* jshint expr: true */
// db.wasErrorReported().should.be.false; // should not report error again
// /* jshint expr: false */
// done();
// });
// });
});
});