From 4feaa7022bf9e8d850c163424fd4ed3b54bc6f83 Mon Sep 17 00:00:00 2001 From: Arnaud Brousseau Date: Tue, 10 Oct 2023 15:53:57 -0500 Subject: [PATCH] Bump timeout to 30s for viem and ethers tests --- packages/ethers/jest.config.js | 2 ++ packages/viem/jest.config.js | 1 + 2 files changed, 3 insertions(+) diff --git a/packages/ethers/jest.config.js b/packages/ethers/jest.config.js index 87d1f6e27..946f3b1dd 100644 --- a/packages/ethers/jest.config.js +++ b/packages/ethers/jest.config.js @@ -4,6 +4,8 @@ const config = { "\\.[jt]sx?$": "@turnkey/jest-config/transformer.js", }, testPathIgnorePatterns: ["/dist/", "/node_modules/"], + testTimeout: 30 * 1000, // For slow CI machines }; + module.exports = config; diff --git a/packages/viem/jest.config.js b/packages/viem/jest.config.js index a86faa5a1..700668d29 100644 --- a/packages/viem/jest.config.js +++ b/packages/viem/jest.config.js @@ -5,6 +5,7 @@ const config = { }, testPathIgnorePatterns: ["/dist/", "/node_modules/"], setupFiles: ["dotenv/config"], + testTimeout: 30 * 1000, // For slow CI machines }; module.exports = config;