Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions packages/contracts/test/L2/Counter.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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;

Expand All @@ -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");
Expand Down