@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
13 lines (10 loc) • 419 B
text/typescript
// A test files that can contains generic failsafe we have for LLD
import "./test-helpers/setup";
import { getAbandonSeedAddress, listSupportedCurrencies } from "../currencies";
describe("supported currencies are ready to work", () => {
listSupportedCurrencies().forEach(c =>
test("getAbandonSeedAddress works for currency " + c.id, () =>
expect(getAbandonSeedAddress(c.id)).toBeTruthy(),
),
);
});