Skip to content

Commit

Permalink
test: tweak timeout
Browse files Browse the repository at this point in the history
The chainId check test needs to read an existing deployment, the startup
time seems to trip the timeout.
  • Loading branch information
kanej committed Sep 14, 2023
1 parent ff8fe1f commit f68813c
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,9 @@ import { assert } from "chai";

import { useHardhatProject } from "../../../helpers/hardhat-projects";

describe("chainId reconciliation", () => {
describe("chainId reconciliation", function () {
this.timeout(60000);

useHardhatProject("default-with-new-chain-id");

it("should halt when running a deployment on a different chain", async function () {
Expand Down

0 comments on commit f68813c

Please sign in to comment.