Skip to content

Commit

Permalink
Use quantity check for limits (#3748)
Browse files Browse the repository at this point in the history
  • Loading branch information
yury-dubinin committed Aug 16, 2024
1 parent df162b3 commit fdd783a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/web/e2e/tests/monitoring.wallet.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ test.describe("Test Filled Order feature", () => {
await tradePage.openLimit();
await tradePage.selectAsset("OSMO");
await tradePage.enterAmount("2.99");
await tradePage.setLimitPriceChange("2%");
await tradePage.setLimitPriceChange("Market");
const { msgContentAmount } = await tradePage.limitSellAndGetWalletMsg(
context
);
Expand All @@ -76,7 +76,7 @@ test.describe("Test Filled Order feature", () => {
context
);
expect(msgContentAmount).toBeTruthy();
expect(msgContentAmount).toContain("1.05 USDC (Noble/channel-750)");
expect(msgContentAmount).toContain('"quantity": "1050000"');
expect(msgContentAmount).toContain("place_limit");
expect(msgContentAmount).toContain('"order_direction": "bid"');
await tradePage.isTransactionSuccesful();
Expand Down

0 comments on commit fdd783a

Please sign in to comment.