Skip to content

Commit

Permalink
chore: Increase guides-dapp-testing test timeout (#2343)
Browse files Browse the repository at this point in the history
  • Loading branch information
spalladino authored Sep 15, 2023
1 parent b45dd26 commit 1cebe2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions yarn-project/end-to-end/src/guides/dapp_testing.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ describe('guides/dapp/testing', () => {
await token.methods.mint_private(20n, secretHash).send().wait();
await token.methods.redeem_shield({ address: recipient.getAddress() }, 20n, secret).send().wait();
expect(await token.methods.balance_of_private({ address: recipient.getAddress() }).view()).toEqual(20n);
});
}, 30_000);
});
});

Expand Down Expand Up @@ -78,7 +78,7 @@ describe('guides/dapp/testing', () => {
await token.methods.mint_private(20n, secretHash).send().wait();
await token.methods.redeem_shield({ address: recipient.getAddress() }, 20n, secret).send().wait();
expect(await token.methods.balance_of_private({ address: recipient.getAddress() }).view()).toEqual(20n);
});
}, 30_000);
});
// docs:end:sandbox-example

Expand All @@ -104,7 +104,7 @@ describe('guides/dapp/testing', () => {
await token.methods.mint_private(20n, secretHash).send().wait();
await token.methods.redeem_shield({ address: recipient.getAddress() }, 20n, secret).send().wait();
expect(await token.methods.balance_of_private({ address: recipient.getAddress() }).view()).toEqual(20n);
});
}, 30_000);
});

describe('cheats', () => {
Expand Down

0 comments on commit 1cebe2c

Please sign in to comment.