18 lines
460 B
TypeScript
18 lines
460 B
TypeScript
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
|
|
// ...
|
|
// ...
|
|
});
|
|
});
|