diff --git a/core/tests/ts-integration/package.json b/core/tests/ts-integration/package.json index 03bd84bb3f4..9fd4d32cbd4 100644 --- a/core/tests/ts-integration/package.json +++ b/core/tests/ts-integration/package.json @@ -4,7 +4,7 @@ "license": "MIT", "private": true, "scripts": { - "test": "zk f jest --forceExit --testTimeout 60000", + "test": "zk f jest --forceExit --testTimeout 600000", "long-running-test": "zk f jest", "fee-test": "RUN_FEE_TEST=1 zk f jest -- fees.test.ts", "api-test": "zk f jest -- api/web3.test.ts api/debug.test.ts", diff --git a/core/tests/ts-integration/tests/api/web3.test.ts b/core/tests/ts-integration/tests/api/web3.test.ts index 569321d548c..9a22c89cd43 100644 --- a/core/tests/ts-integration/tests/api/web3.test.ts +++ b/core/tests/ts-integration/tests/api/web3.test.ts @@ -1232,7 +1232,7 @@ describe('web3 API compatibility tests', () => { * @param iterationStep The number of times this function has been called. */ async function tryWait(iterationStep: number) { - const maxWaitTimeMs = 100_000; // 100 seconds + const maxWaitTimeMs = 1_000_000; // 1000 seconds const maxRetries = maxWaitTimeMs / alice.provider.pollingInterval; await zksync.utils.sleep(alice.provider.pollingInterval); if (iterationStep >= maxRetries) {