@ledgerhq/coin-aptos
Version:
Ledger Aptos Coin integration
12 lines (9 loc) • 311 B
text/typescript
import { isTestnet } from "../../logic/isTestnet";
describe("isTestnet", () => {
it("should return true for testnet currencies", () => {
expect(isTestnet("aptos_testnet")).toBe(true);
});
it("should return false for mainnet currencies", () => {
expect(isTestnet("aptos")).toBe(false);
});
});