only test crypto payment accounts

This commit is contained in:
woodser 2021-11-16 08:06:20 -05:00
parent e66f6b4854
commit edc0f04498

View File

@ -128,8 +128,10 @@ test("Can get my offers", async () => {
test("Can get payment accounts", async () => {
let paymentAccounts: PaymentAccount[] = await alice.getPaymentAccounts();
for (let paymentAccount of paymentAccounts) {
if (paymentAccount.getPaymentAccountPayload()!.getCryptoCurrencyAccountPayload()) { // TODO (woodser): test non-crypto
testCryptoPaymentAccount(paymentAccount);
}
}
});
test("Can create crypto payment accounts", async () => {