Keyring test should ensure that it's actually getting a key when it uses a valid address

This commit is contained in:
Eason Goodale 2014-02-06 04:36:57 -08:00
parent f00f4a9582
commit bb4057af7d

View File

@ -54,7 +54,7 @@ describe("Keyring", function() {
});
it('getPublicKeyForAddress() - valid address', function(done) {
var key = keyring.getPublicKeyForAddress(user);
expect(key).to.exist;
expect(key).to.exist.and.have.length(1);
done();
});
it('getPrivateKeyForAddress() - unknown address', function(done) {
@ -64,7 +64,7 @@ describe("Keyring", function() {
});
it('getPrivateKeyForAddress() - valid address', function(done) {
var key = keyring.getPrivateKeyForAddress(user);
expect(key).to.exist;
expect(key).to.exist.and.have.length(1);
done();
});
it('getKeysForKeyId() - unknown id', function(done) {