launchpad: Add basic test for GasPrice
This commit is contained in:
@@ -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");
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user