Skip to content

Commit

Permalink
docs(e2e): update comments in single-transaction flow test
Browse files Browse the repository at this point in the history
  • Loading branch information
No-Cash-7970 committed Oct 8, 2024
1 parent c2f01a1 commit bbfceaa
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/e2e/flow_single_txn.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ const test = base.extend<{ homePage: HomePage }>({

test.slow();

// Run through the entire flow of creating and sending a single transaction.
test.skip('Flow — Single transaction from start to finish', async ({ homePage, page }) => {
// Run through the entire normal flow of creating and sending a single transaction.
test.skip('Flow — Single transaction', async ({ homePage, page }) => {
await mockNodeResponses(page);

/*===== Home page =====*/
Expand Down Expand Up @@ -72,7 +72,7 @@ test.skip('Flow — Single transaction from start to finish', async ({ homePage,
// Sign transaction and go to send page
await page.getByRole('button', { name: 'Sign this transaction' }).click();

/*===== Sign Transaction page =====*/
/*===== Send Transaction page =====*/

// See if transaction succeeded
await expect(page.getByText('Transaction confirmed!')).toBeVisible();
Expand Down

0 comments on commit bbfceaa

Please sign in to comment.