Initial commit
This commit is contained in:
17
hardhat/test/PowersOfTwo.ts
Normal file
17
hardhat/test/PowersOfTwo.ts
Normal file
@@ -0,0 +1,17 @@
|
||||
import assert from "node:assert/strict";
|
||||
import { describe, it } from "node:test";
|
||||
|
||||
import { network } from "hardhat";
|
||||
|
||||
describe("PowersOfTwo", async function () {
|
||||
const { viem } = await network.connect();
|
||||
const publicClient = await viem.getPublicClient();
|
||||
|
||||
it("The test name goes here...", async function () {
|
||||
const contract = await viem.deployContract("PowersOfTwo");
|
||||
|
||||
// you can write commands/asserts/etc here
|
||||
// ...
|
||||
// ...
|
||||
});
|
||||
});
|
||||
Reference in New Issue
Block a user