From 2be4ee3619ef1ba108419e8c2ec6b2afe5ce5ba2 Mon Sep 17 00:00:00 2001 From: Steven Luscher Date: Tue, 26 Apr 2022 23:54:56 -0700 Subject: [PATCH] test: increase timeout for getEstimatedFee test (#24732) --- web3.js/test/transaction.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web3.js/test/transaction.test.ts b/web3.js/test/transaction.test.ts index fabe4b4c6..8c375a241 100644 --- a/web3.js/test/transaction.test.ts +++ b/web3.js/test/transaction.test.ts @@ -134,7 +134,7 @@ describe('Transaction', () => { const fee = await transaction.getEstimatedFee(connection); expect(fee).to.eq(5000); - }).timeout(10 * 1000); + }).timeout(60 * 1000); it('partialSign', () => { const account1 = Keypair.generate();