Skip to content

Commit

Permalink
Update transactions.spec.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
olehbairak authored Mar 21, 2024
1 parent 8a520a4 commit 177bd6b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions packages/integration-tests/tests/ui/transactions.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ test("Verify deployed the own ERC20 token contract", async ({ page }) => {
});

//@id1682
test(" Check on BE Transfer ETH token via Portal", async ({ page }) => {
test("Check on BE Transfer ETH token via Portal", async ({ page }) => {
transaction = await helper.readFile(Path.absolutePathToBufferFiles, Buffer.txEthWithdraw);
url = BlockExplorer.baseUrl + `/tx/${transaction}` + BlockExplorer.localNetwork;

Expand Down Expand Up @@ -75,9 +75,9 @@ test(" Check on BE Transfer ETH token via Portal", async ({ page }) => {
});

//@id1680
test(" Check on BE Transfer custom ERC-20 token via Portal", async ({ page }) => {
test("Check on BE Transfer custom ERC-20 token via Portal", async ({ page }) => {
transaction = await helper.readFile(Path.absolutePathToBufferFiles, Buffer.txMultiTransferCustomTokenI);
const adressTo = await helper.readFile(Path.absolutePathToBufferFiles, Buffer.L2);
const addressTo = await helper.readFile(Path.absolutePathToBufferFiles, Buffer.L2);
url = BlockExplorer.baseUrl + `/tx/${transaction}` + BlockExplorer.localNetwork;

await page.goto(url);
Expand All @@ -88,7 +88,7 @@ test(" Check on BE Transfer custom ERC-20 token via Portal", async ({ page }) =>
selector = `text=${Wallets.richWalletAddress}`;
elementFrom = await page.locator(selector).first();

selector = `text=${adressTo}`;
selector = `text=${addressTo}`;
elementTo = await page.locator(selector).first();

selector = `text= 1 `;
Expand Down

0 comments on commit 177bd6b

Please sign in to comment.