Skip to content

Commit

Permalink
changed named
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexChetverov committed Nov 15, 2023
1 parent 672ea60 commit 72651e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/microapps-ui-xcm/microapps-ui-main.accounts.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,7 @@ describe.each`
MGX_ASSET_NAME + " / " + KSM_ASSET_NAME,
);
expect(isPoolDetailsVisible).toBeTruthy();
const my_pool_share = await poolDetails.getMyPositionAmount();
const poolShareBefore = await poolDetails.getMyPositionAmount();

await poolDetails.clickAddLiquidity();
const isFirstTokenNameSet =
Expand Down Expand Up @@ -198,8 +198,8 @@ describe.each`
2,
);

const my_new_pool_share = await poolDetails.getMyPositionAmount();
expect(my_new_pool_share).toBeGreaterThan(my_pool_share);
const poolShareAfter = await poolDetails.getMyPositionAmount();
expect(poolShareAfter).toBeGreaterThan(poolShareBefore);
});

test("Deposit tokens by account type " + accType, async () => {
Expand Down

0 comments on commit 72651e7

Please sign in to comment.