Skip to content

Commit

Permalink
test(e2e): unskip single transaction flow test
Browse files Browse the repository at this point in the history
This also removes the page refresh portion of the test, which consistently made the test fail in a
way that did not show up in manual tests.
  • Loading branch information
No-Cash-7970 committed Oct 12, 2024
1 parent 977f788 commit 8173f64
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions src/e2e/flow_single_txn.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const test = base.extend<{ homePage: HomePage }>({
test.slow();

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

/*===== Home page =====*/
Expand Down Expand Up @@ -64,11 +64,6 @@ test.skip('Flow — Single transaction', async ({ homePage, page }) => {
));
await page.getByRole('button', { name: 'Use mnemonic' }).click();

// Reload page to check if data and sign button are still there
await page.reload();
await checkSignTxnDataTable(page);
await expect(page.getByRole('button', { name: 'Sign this transaction' })).toBeVisible();

// Sign transaction and go to send page
await page.getByRole('button', { name: 'Sign this transaction' }).click();

Expand Down

0 comments on commit 8173f64

Please sign in to comment.