Skip to content

Commit

Permalink
test: increase makeAccount timeout
Browse files Browse the repository at this point in the history
- with #9927, the makeAccount flow might also involve making an ICQ connection. This change increases
  the timeout for makeAccount to account for the additional work/latency.
  • Loading branch information
0xpatrickdev committed Aug 27, 2024
1 parent 7617e20 commit 483ce3d
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 0 deletions.
3 changes: 3 additions & 0 deletions multichain-testing/test/auto-stake-it.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -180,6 +180,9 @@ const autoStakeItScenario = test.macro({
({ offerToPublicSubscriberPaths }) =>
Object.fromEntries(offerToPublicSubscriberPaths)[offerId],
`${offerId} continuing invitation is in vstorage`,
{
maxRetries: 10,
},
);

const offerToPublicSubscriberMap = Object.fromEntries(
Expand Down
3 changes: 3 additions & 0 deletions multichain-testing/test/basic-flows.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,9 @@ const makeAccountScenario = test.macro({
({ offerToPublicSubscriberPaths }) =>
Object.fromEntries(offerToPublicSubscriberPaths)[offerId],
`${offerId} continuing invitation is in vstorage`,
{
maxRetries: 10,
},
);

const offerToPublicSubscriberMap = Object.fromEntries(
Expand Down
3 changes: 3 additions & 0 deletions multichain-testing/test/stake-ica.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ const stakeScenario = test.macro(async (t, scenario: StakeIcaScenario) => {
({ offerToPublicSubscriberPaths }) =>
!!offerToPublicSubscriberPaths.length,
'makeAccount offer result is in vstorage',
{
maxRetries: 10,
},
);

t.log(makeAccountPublicSubscriberPaths[0]);
Expand Down

0 comments on commit 483ce3d

Please sign in to comment.