From dfafaf55bdc97d56bd7934bdc7e746c7afcaeb21 Mon Sep 17 00:00:00 2001 From: Pierre Jeanjacquot <26487010+PierreJeanjacquot@users.noreply.github.com> Date: Tue, 24 Oct 2023 10:21:36 +0200 Subject: [PATCH] drastically increase lib test timeout to fit with 4s block time --- test/lib.test.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/lib.test.js b/test/lib.test.js index 46b1b846..e3cf32f9 100644 --- a/test/lib.test.js +++ b/test/lib.test.js @@ -17,8 +17,8 @@ const { readFile, ensureDir, writeFile } = fsExtra; console.log('Node version:', process.version); -// increased from 60 s with ganache to 120s -const DEFAULT_TIMEOUT = 120000; +// increased from 60s with ganache to 240s +const DEFAULT_TIMEOUT = 240000; jest.setTimeout(DEFAULT_TIMEOUT);