throw if not account when there should be

This commit is contained in:
AJ ONeal 2016-09-02 16:38:05 -06:00
parent fd3de76a9c
commit 8e23160ab2
1 changed files with 8 additions and 0 deletions

View File

@ -146,6 +146,14 @@ var tests = [
email: goodGuy.email
}).then(function (account) {
if (!account) {
throw new Error("should have returned account for " + goodGuy.email);
}
if (!account.keypair) {
throw new Error("should have returned account.keypair for " + goodGuy.email);
}
if (goodGuy.keypair.privateKeyPem !== account.keypair.privateKeyPem) {
if (account.keypair.privateKeyJwk) {
throw new Error("Error in test itself (not your fault). TODO: implement checking privateKeyJwk.");