UNPKG

@ledgerhq/hw-app-algorand

Version:
12 lines (10 loc) 323 B
import { openTransportReplayer, RecordStore, } from "@ledgerhq/hw-transport-mocker"; import Algorand from "../src/Algorand"; test("Algorand init", async () => { const transport = await openTransportReplayer(RecordStore.fromString("")); const algo = new Algorand(transport); expect(algo).not.toBe(undefined); });