@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
7 lines • 443 B
JavaScript
// 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()));
});
//# sourceMappingURL=environment.test.js.map