Skip to content

Commit

Permalink
test: fix logic
Browse files Browse the repository at this point in the history
  • Loading branch information
juanmahidalgo committed Apr 30, 2024
1 parent 458adab commit ea38887
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions webapp/src/modules/wallet/utils.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,8 @@ describe('when waiting for the wallet to connect', () => {
return expectSaga(waitForWalletConnectionAndIdentityIfConnecting)
.provide([
[select(isConnecting), true],
[delay(WAIT_FOR_WALLET_CONNECTION_TIMEOUT + 1), void 0]
[delay(WAIT_FOR_WALLET_CONNECTION_TIMEOUT), void 0]
])
.delay(WAIT_FOR_WALLET_CONNECTION_TIMEOUT + 1) // Simulate a delay longer than the timeout
.run()
})
})
Expand Down

0 comments on commit ea38887

Please sign in to comment.