From e257cc549e8214d3364efc462eaebce4c9b4a1cf Mon Sep 17 00:00:00 2001 From: Bucur David Date: Thu, 21 Sep 2023 15:27:10 +0300 Subject: [PATCH] test: increase timeout --- tests/nftminter.test.ts | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/nftminter.test.ts b/tests/nftminter.test.ts index 35a74a4..36128e5 100644 --- a/tests/nftminter.test.ts +++ b/tests/nftminter.test.ts @@ -59,7 +59,7 @@ describe('Nft minter test', () => { } ); expect(mintTx).toBeInstanceOf(Transaction); - }, 20000); + }, 40000); test('#mint nft using your image and metadata', async () => { const factoryGeneratedContract = new Address( @@ -88,7 +88,7 @@ describe('Nft minter test', () => { } ); expect(mintTx).toBeInstanceOf(Transaction); - }, 20000); + }, 40000); test('#mint nft using tax for minting', async () => { const factoryGeneratedContract = new Address( @@ -117,5 +117,5 @@ describe('Nft minter test', () => { ); expect(mintTx).toBeInstanceOf(Transaction); - }); + }, 40000); });