From 53a36962947fbcd8d036ae1b3c90116f0bb29391 Mon Sep 17 00:00:00 2001 From: Michael Shaw Date: Thu, 26 Jan 2023 13:23:51 -0500 Subject: [PATCH] trying giant timeout for github action... completes locally under 2 minutes --- src/naming.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/naming.test.ts b/src/naming.test.ts index 94c1398..19b501b 100644 --- a/src/naming.test.ts +++ b/src/naming.test.ts @@ -7,7 +7,7 @@ import { ensureUpdatedConfig, getConfig } from './testing/helper'; const WATCHER_YML_PATH = path.join(__dirname, './testing/data/watcher.yml'); -jest.setTimeout(240 * 1000); +jest.setTimeout(600 * 1000); const { chainId, restEndpoint, gqlEndpoint, privateKey, fee } = getConfig();