41 lines
1.2 KiB
TypeScript
41 lines
1.2 KiB
TypeScript
import { launchpad, pendingWithoutLaunchpad } from "../testutils.spec";
|
|
import { LcdClient } from "./lcdclient";
|
|
import { setupSupplyExtension } from "./supply";
|
|
|
|
describe("SupplyExtension", () => {
|
|
describe("totalAll", () => {
|
|
it("works", async () => {
|
|
pendingWithoutLaunchpad();
|
|
|
|
const client = LcdClient.withExtensions({ apiUrl: launchpad.endpoint }, setupSupplyExtension);
|
|
const supply = await client.supply.totalAll();
|
|
expect(supply).toEqual({
|
|
height: jasmine.stringMatching(/^[0-9]+$/),
|
|
result: [
|
|
{
|
|
amount: jasmine.stringMatching(/^[0-9]+$/),
|
|
denom: "ucosm",
|
|
},
|
|
{
|
|
amount: jasmine.stringMatching(/^[0-9]+$/),
|
|
denom: "ustake",
|
|
},
|
|
],
|
|
});
|
|
});
|
|
});
|
|
|
|
describe("total", () => {
|
|
it("works", async () => {
|
|
pendingWithoutLaunchpad();
|
|
|
|
const client = LcdClient.withExtensions({ apiUrl: launchpad.endpoint }, setupSupplyExtension);
|
|
const supply = await client.supply.total("ucosm");
|
|
expect(supply).toEqual({
|
|
height: jasmine.stringMatching(/^[0-9]+$/),
|
|
result: jasmine.stringMatching(/^[0-9]+$/),
|
|
});
|
|
});
|
|
});
|
|
});
|