Skip to content

Commit

Permalink
fix: getting old max ammount data
Browse files Browse the repository at this point in the history
  • Loading branch information
arthurgeron committed Jan 27, 2025
1 parent 3cc18f7 commit 29c40b4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions packages/app/playwright/e2e/SendTransaction.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -346,13 +346,12 @@ test.describe('SendTransaction', () => {
// Fee values change
await new Promise((resolve) => setTimeout(resolve, 3000));

const maxAmountAfterFee = await getInputByName(page, 'amount').inputValue();

// Submit transaction

const btnLocator = getButtonByText(page, 'Review');

await expectButtonToBeEnabled(btnLocator);
const maxAmountAfterFee = await getInputByName(page, 'amount').inputValue();
await btnLocator.click();

// Approve transaction
Expand Down

0 comments on commit 29c40b4

Please sign in to comment.