Skip to content

Commit

Permalink
test: increase timeout
Browse files Browse the repository at this point in the history
  • Loading branch information
bucurdavid committed Sep 21, 2023
1 parent df88714 commit e257cc5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/nftminter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -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(
Expand Down Expand Up @@ -117,5 +117,5 @@ describe('Nft minter test', () => {
);

expect(mintTx).toBeInstanceOf(Transaction);
});
}, 40000);
});

0 comments on commit e257cc5

Please sign in to comment.