diff --git a/packages/hardhat/test/Counter.ts b/packages/hardhat/test/Counter.ts index c86ead3..526e8ff 100644 --- a/packages/hardhat/test/Counter.ts +++ b/packages/hardhat/test/Counter.ts @@ -7,7 +7,7 @@ describe("Counter", function () { before(async () => { const counterFactory = await ethers.getContractFactory("Counter"); - counter = (await counterFactory.deploy()) as Counter; + counter = (await counterFactory.deploy(10)) as Counter; await counter.waitForDeployment(); });