@ledgerhq/coin-aptos
Version:
Ledger Aptos Coin integration
12 lines • 486 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const isTestnet_1 = require("../../logic/isTestnet");
describe("isTestnet", () => {
it("should return true for testnet currencies", () => {
expect((0, isTestnet_1.isTestnet)("aptos_testnet")).toBe(true);
});
it("should return false for mainnet currencies", () => {
expect((0, isTestnet_1.isTestnet)("aptos")).toBe(false);
});
});
//# sourceMappingURL=isTestnet.unit.test.js.map