UNPKG

@ledgerhq/coin-tezos

Version:
34 lines (28 loc) 1.01 kB
import coinConfig, { TezosCoinConfig } from "../config"; import { fetchAllTransactions } from "../network/tzkt"; import { mockConfig } from "../test/config"; jest.setTimeout(2 * 60 * 1000); describe("TEZOS_MAX_TX_QUERIES", () => { const tezosConfig = mockConfig as TezosCoinConfig; const bigAccount = "tz1boBHAVpwcvKkNFAQHYr7mjxAz1PpVgKq7"; test("default have more than 100 txs", async () => { // Given coinConfig.setCoinConfig((): TezosCoinConfig => tezosConfig); const txs = await fetchAllTransactions(bigAccount); expect(txs.length).toBeGreaterThan(100); }); test("lowering it to 1 will only fetch a few txs", async () => { // Given coinConfig.setCoinConfig( (): TezosCoinConfig => ({ ...tezosConfig, explorer: { url: "https://xtz-tzkt-explorer.api.live.ledger.com", maxTxQuery: 1, }, }), ); const txs = await fetchAllTransactions(bigAccount); expect(txs.length).toBeLessThanOrEqual(100); }); });