UNPKG

@ledgerhq/coin-aptos

Version:
11 lines 640 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); const utils_1 = require("../../utils"); describe("endpointByCurrencyId", () => { it("gets the aptos endpoint based on the currency id", () => { expect((0, utils_1.endpointByCurrencyId)("aptos")).toBe("https://apt.coin.ledger.com/node/v1"); expect((0, utils_1.endpointByCurrencyId)("aptos_testnet")).toBe("https://apt.coin.ledger-stg.com/node/v1"); expect(() => (0, utils_1.endpointByCurrencyId)("NONE")).toThrow("unexpected currency id format <NONE>, should be like aptos[_testnet]"); }); }); //# sourceMappingURL=index.test.js.map