From 6910b9f83b016f4de852aaac993160864481410b Mon Sep 17 00:00:00 2001 From: cds-amal Date: Thu, 29 Sep 2022 11:59:17 -0400 Subject: [PATCH] compile-solidity-tests: increase timeout --- packages/compile-solidity-tests/test/JSparser.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/compile-solidity-tests/test/JSparser.ts b/packages/compile-solidity-tests/test/JSparser.ts index 6f8ed5bed2d..9aa90341ee7 100644 --- a/packages/compile-solidity-tests/test/JSparser.ts +++ b/packages/compile-solidity-tests/test/JSparser.ts @@ -58,7 +58,7 @@ describe("JSparser", () => { }); it("properly throws when passed an invalid parser value", async function () { - this.timeout(3000); + this.timeout(20000); options.compilers.solc.parser = "badParser"; options.contracts_directory = path.join(__dirname, "./sources/v0.5.x");