Skip to content

Commit

Permalink
Merge branch 'hotfix/v0.8.2'
Browse files Browse the repository at this point in the history
  • Loading branch information
Luphia1984 committed Mar 8, 2024
2 parents 452d7f6 + 65c262e commit 982f87f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions integration-test/pages/MyAssetsPage.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,11 +27,11 @@ export class MyAssetsPage {
// Info: (20231013 - Jacky) Check balance higher than 20
async checkBalance() {
await this.page.locator('#ShowBalanceButton').click();
const assetsAvailable = await this.page
const assetsAvailable = (await this.page
.locator(
'#__next > div > div:nth-child(6) > main > div > div > div.pt-10 > div:nth-child(2) > div:nth-child(3) > span:nth-child(1)'
)
.textContent();
.textContent()) as string;
expect(
Number(
(assetsAvailable as string)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "src",
"version": "0.8.1",
"version": "0.8.2",
"private": true,
"scripts": {
"dev": "next dev",
Expand Down

0 comments on commit 982f87f

Please sign in to comment.