import { expect } from "chai"; import { ethers } from "hardhat"; describe("Counter", function () { it("increments by the requested amount", async function () { const counter = await ethers.deployContract("Counter"); await counter.incBy(10); expect(await counter.x()).to.equal(10n); }); });