|
|
@ -632,9 +632,7 @@ describe('Wallet service', function() { |
|
|
|
|
|
|
|
|
|
|
|
describe('#getInstanceWithAuth', function() { |
|
|
|
|
|
|
|
it('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; |
|
|
@ -645,8 +643,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(); |
|
|
|
}); |
|
|
|
}); |
|
|
|