Skip to content

Commit

Permalink
Merge pull request #410 from Web3Auth/demo_wallet
Browse files Browse the repository at this point in the history
Wallet service fix: from MATIC to POL
  • Loading branch information
vinayaktorus authored Oct 3, 2024
2 parents 819acf2 + b88675b commit 40c358c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions walletservices/wallet-service/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -64,10 +64,10 @@ test.describe.serial("Core Wallet Services Scenarios @smoke", () => {

test(`Verify details displayed on send transaction screen`, async () => {
const accountsPage = new WalletServicesPage(page);
await accountsPage.verifyAvailableBalance("0.1899 MATIC");
await accountsPage.verifyAvailableBalance("0.1899 POL");
await accountsPage.enterTransactionAmount("0.0001");
await accountsPage.clickButton("Submit");
await accountsPage.verifyTransferTokenAmount("0.0001 MATIC");
await accountsPage.verifyTransferTokenAmount("0.0001 POL");
await accountsPage.verifyTransferFromAddress("0xed21...4C0a7");
await accountsPage.verifyTransferToAddress("0x9904...ADE6A");
});
Expand All @@ -91,7 +91,7 @@ test.describe.serial("Core Wallet Services Scenarios @smoke", () => {
waitUntil: "load",
});
await accountsPage.verifyTransactionActivity("Sent MATIC|to 0x9904bf11c69233454162b72d7289ccbb295ade6a|20:12:44 | 19 Sept 2024");
await accountsPage.verifyTransactionActivity("Received MATIC|to 0xed2130dd79960a00be8abe75962c75678af4c0a7|19:57:52 | 19 Sept 2024");
await accountsPage.verifyTransactionActivity("Received POL|to 0xed2130dd79960a00be8abe75962c75678af4c0a7|19:57:52 | 19 Sept 2024");
});

test(`Verify user is able to switch currency`, async () => {
Expand Down

0 comments on commit 40c358c

Please sign in to comment.