Skip to content

Commit

Permalink
Merge pull request #143 from Agoric/test/fix-for-origin-args
Browse files Browse the repository at this point in the history
test: fix for DEFAULT_TIMEOUT missing in args
  • Loading branch information
frazarshad authored Apr 25, 2024
2 parents 0360f0e + 1f7bc91 commit 178d87e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/e2e/specs/swap-tokens.spec.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,8 @@ describe('Swap Tokens Tests', () => {
// Provision IST for wallet
cy.origin(
'https://emerynet.faucet.agoric.net',
{ args: { walletAddress } },
({ walletAddress }) => {
{ args: { walletAddress, DEFAULT_TIMEOUT } },
({ walletAddress, DEFAULT_TIMEOUT }) => {
cy.visit('/');
cy.get('[id="address"]').first().type(walletAddress.value);
cy.get('[type="radio"][value="client"]').click();
Expand Down

0 comments on commit 178d87e

Please sign in to comment.