launchpad: Add basic test for GasPrice
This commit is contained in:
parent
c87b0643f9
commit
04f8e06771
9
packages/launchpad/src/gas.spec.ts
Normal file
9
packages/launchpad/src/gas.spec.ts
Normal file
@ -0,0 +1,9 @@
|
||||
import { GasPrice } from "./gas";
|
||||
|
||||
describe("GasPrice", () => {
|
||||
it("can be constructed", () => {
|
||||
const gasPrice = new GasPrice(3.14, "utest");
|
||||
expect(gasPrice.amount).toEqual(3.14);
|
||||
expect(gasPrice.denom).toEqual("utest");
|
||||
});
|
||||
});
|
||||
Loading…
Reference in New Issue
Block a user