Files
lab6/hardhat/test/PowersOfTwo.ts
2026-03-26 16:17:30 +01:00

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
// ...
// ...
});
});