@ledgerhq/live-common
Version:
Common ground for the Ledger Live apps
15 lines (12 loc) • 398 B
text/typescript
import { DatasetTest } from "@ledgerhq/types-live";
import { testBridge } from "../../../__tests__/test-helpers/bridge";
import "../../../__tests__/test-helpers/setup.integration";
import crypto_org from "./cryptoOrg";
import type { Transaction } from "../types";
const dataset: DatasetTest<Transaction> = {
implementations: ["js"],
currencies: {
crypto_org,
},
};
testBridge(dataset);