UNPKG

@ledgerhq/coin-canton

Version:
10 lines 427 B
import { createTransaction } from "./createTransaction"; describe("createTransaction", () => { it("should create a 0 amount transaction", () => { expect(createTransaction({}).amount.toNumber()).toEqual(0); }); it("should create a transaction with boilerplate family", () => { expect(createTransaction({}).family).toEqual("boilerplate"); }); }); //# sourceMappingURL=createTransaction.test.js.map