From 5a8d31b8440b72c922f4fff17418b105af2a1e98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ra=C3=BAl=20R=2E=20Pearson?= Date: Wed, 20 Apr 2022 15:09:16 +0200 Subject: [PATCH] Fix Counter test --- packages/contracts/test/L2/Counter.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/contracts/test/L2/Counter.ts b/packages/contracts/test/L2/Counter.ts index 554fd25..49387a1 100644 --- a/packages/contracts/test/L2/Counter.ts +++ b/packages/contracts/test/L2/Counter.ts @@ -3,7 +3,7 @@ import { expect } from "chai"; import { StarknetContract } from "hardhat/types"; describe("Counter", function () { - this.timeout(30_000); + this.timeout(50_000); let contract: StarknetContract; @@ -17,7 +17,7 @@ describe("Counter", function () { expect(value).to.equal(10n); }); - it.only("can increment by the given argument", async () => { + it("can increment by the given argument", async () => { await contract.invoke("increment", { inc: 5 }); const { value } = await contract.call("read");