This commit is contained in:
Ivan Socolsky 2015-08-18 17:39:29 -03:00
parent 2014d030a5
commit d47bb65fdd
1 changed files with 19 additions and 0 deletions

View File

@ -1117,6 +1117,25 @@ describe('Wallet service', function() {
});
});
describe.only('#getStatus', function() {
var server, wallet;
beforeEach(function(done) {
helpers.createAndJoinWallet(1, 1, function(s, w) {
server = s;
wallet = w;
done();
});
});
it('should get status', function(done) {
server.getStatus({}, function(err, status) {
should.not.exist(err);
should.exist(status);
done();
});
});
});
describe('#verifyMessageSignature', function() {
var server, wallet;
beforeEach(function(done) {