test client version stored

This commit is contained in:
Ivan Socolsky 2015-06-29 08:40:39 -03:00
parent a9d1a3c06a
commit 4139cb0ae7
1 changed files with 5 additions and 3 deletions

View File

@ -576,9 +576,7 @@ describe('Wallet service', function() {
describe('#getInstanceWithAuth', function() {
it('should get server instance for existing copayer', function(done) {
it.only('should get server instance for existing copayer', function(done) {
helpers.createAndJoinWallet(1, 2, function(s, wallet) {
var xpriv = TestData.copayers[0].xPrivKey;
var priv = TestData.copayers[0].privKey_1H_0;
@ -589,8 +587,12 @@ describe('Wallet service', function() {
copayerId: wallet.copayers[0].id,
message: 'hello world',
signature: sig,
clientVersion: 'bwc-0.0.1',
}, function(err, server) {
should.not.exist(err);
server.walletId.should.equal(wallet.id);
server.copayerId.should.equal(wallet.copayers[0].id);
server.clientVersion.should.equal('bwc-0.0.1');
done();
});
});