test: increase timeout for getEstimatedFee test (#24732)

This commit is contained in:
Steven Luscher 2022-04-26 23:54:56 -07:00 committed by GitHub
parent 4e2d96fe88
commit 2be4ee3619
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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();