Skip to content

Commit

Permalink
test: change sell reference amounts
Browse files Browse the repository at this point in the history
  • Loading branch information
crnbarr93 committed Aug 28, 2024
1 parent f4a50eb commit e8d99b3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/web/e2e/tests/trade.wallet.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ test.describe("Test Trade feature", () => {
await tradePage.getTransactionUrl();
await tradePage.gotoOrdersHistory();
const trxPage = new TransactionsPage(context.pages()[0]);
await trxPage.cancelLimitOrder(`Sell $1.00 of`, limitPrice, context);
await trxPage.cancelLimitOrder(`Sell $${amount} of`, limitPrice, context);
await tradePage.isTransactionSuccesful();
await tradePage.getTransactionUrl();
});
Expand All @@ -122,7 +122,7 @@ test.describe("Test Trade feature", () => {
await tradePage.getTransactionUrl();
await tradePage.gotoOrdersHistory();
const trxPage = new TransactionsPage(context.pages()[0]);
await trxPage.cancelLimitOrder(`Sell $1.00 of`, limitPrice, context);
await trxPage.cancelLimitOrder(`Sell $${amount} of`, limitPrice, context);
await tradePage.isTransactionSuccesful();
await tradePage.getTransactionUrl();
});
Expand Down

0 comments on commit e8d99b3

Please sign in to comment.