From 293f6d46fb9f3d3019c380baa0c4dee6a43b6244 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Wed, 24 Jul 2024 11:48:24 +0300 Subject: [PATCH 1/4] fix spelling recovery_hp_2.cy.js --- cypress/e2e/happypath/recovery_hp_2.cy.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/happypath/recovery_hp_2.cy.js b/cypress/e2e/happypath/recovery_hp_2.cy.js index ae24f22bd..3900983e7 100644 --- a/cypress/e2e/happypath/recovery_hp_2.cy.js +++ b/cypress/e2e/happypath/recovery_hp_2.cy.js @@ -11,7 +11,7 @@ describe('Recovery happy path tests 2', () => { main.acceptCookies() }) - // Check that recoverer can start and complete the process if not cancelled by the owner + // Check that recoverer can start and complete the process if not canceled by the owner it('Recovery setup happy path 2', { defaultCommandTimeout: 300000 }, () => { owner.waitForConnectionStatus() recovery.postponeRecovery() From f443bd5b9d7af92db02890178527aad06d51484b Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Wed, 24 Jul 2024 11:50:00 +0300 Subject: [PATCH 2/4] remove article import_export.pages.js --- cypress/e2e/pages/import_export.pages.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cypress/e2e/pages/import_export.pages.js b/cypress/e2e/pages/import_export.pages.js index ce112e1c7..400801e42 100644 --- a/cypress/e2e/pages/import_export.pages.js +++ b/cypress/e2e/pages/import_export.pages.js @@ -134,7 +134,7 @@ export function clickOnAppsBtn() { export function clickOnBookmarkedAppsBtn() { cy.contains(bookmarkedAppsBtnStr).click() - //Takes a some time to load the apps page, It waits for bookmark to be lighted up + //Takes some time to load the apps page, It waits for bookmark to be lighted up cy.waitForSelector(() => { return cy .get('[aria-selected="true"] p') From 6ba8cc5fba902d3f157fe6e7e5f45518dcbd6ebf Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Wed, 24 Jul 2024 11:58:02 +0300 Subject: [PATCH 3/4] fix spellng tx_history.cy.js --- cypress/e2e/regression/tx_history.cy.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/cypress/e2e/regression/tx_history.cy.js b/cypress/e2e/regression/tx_history.cy.js index 8fbeafeb6..2580aaed1 100644 --- a/cypress/e2e/regression/tx_history.cy.js +++ b/cypress/e2e/regression/tx_history.cy.js @@ -27,7 +27,7 @@ describe('Tx history tests 1', () => { ) }) - it('Verify exapanded details for account creation', () => { + it('Verify expanded details for account creation', () => { createTx.clickOnTransactionItemByName(typeCreateAccount.title) createTx.verifyExpandedDetails([ typeCreateAccount.creator.actionTitle, @@ -61,7 +61,7 @@ describe('Tx history tests 1', () => { }) // Token send - it('Verify exapanded details for token send', () => { + it('Verify expanded details for token send', () => { createTx.clickOnTransactionItemByName(typeSend.title, typeSend.summaryTxInfo) createTx.verifyExpandedDetails([typeSend.sentTo, typeSend.recipientAddress, typeSend.transactionHash]) createTx.verifyActionListExists([ @@ -81,7 +81,7 @@ describe('Tx history tests 1', () => { ) }) - it('Verify exapanded details for initial spending limits setup', () => { + it('Verify expanded details for initial spending limits setup', () => { createTx.clickOnTransactionItemByName(typeSpendingLimits.title, typeSpendingLimits.summaryTxInfo) createTx.verifyExpandedDetails( [ @@ -125,7 +125,7 @@ describe('Tx history tests 1', () => { }) // Spending limit deletion - it('Verify exapanded details for allowance deletion', () => { + it('Verify expanded details for allowance deletion', () => { createTx.clickOnTransactionItemByName(typeDeleteAllowance.title, typeDeleteAllowance.summaryTxInfo) createTx.verifyExpandedDetails([ typeDeleteAllowance.description, From fca07915e596d31fef16aed2d39a6876d996e261 Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Wed, 24 Jul 2024 11:58:43 +0300 Subject: [PATCH 4/4] fix spelling tx_history_2.cy.js --- cypress/e2e/regression/tx_history_2.cy.js | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/cypress/e2e/regression/tx_history_2.cy.js b/cypress/e2e/regression/tx_history_2.cy.js index af633f569..2f3e6565e 100644 --- a/cypress/e2e/regression/tx_history_2.cy.js +++ b/cypress/e2e/regression/tx_history_2.cy.js @@ -26,7 +26,7 @@ describe('Tx history tests 2', () => { }) // On-chain rejection - it('Verify exapanded details for on-chain rejection', () => { + it('Verify expanded details for on-chain rejection', () => { createTx.clickOnTransactionItemByName(typeOnchainRejection.title) createTx.verifyExpandedDetails([ typeOnchainRejection.description, @@ -41,7 +41,7 @@ describe('Tx history tests 2', () => { }) // Batch transaction - it('Verify exapanded details for batch', () => { + it('Verify expanded details for batch', () => { createTx.clickOnTransactionItemByName(typeBatch.title, typeBatch.summaryTxInfo) createTx.verifyExpandedDetails( [ @@ -61,7 +61,7 @@ describe('Tx history tests 2', () => { createTx.verifySummaryByName(typeAddOwner.title, [typeGeneral.statusOk], typeAddOwner.altImage) }) - it('Verify exapanded details for adding owner', () => { + it('Verify expanded details for adding owner', () => { createTx.clickOnTransactionItemByName(typeAddOwner.title) createTx.verifyExpandedDetails( [ @@ -80,7 +80,7 @@ describe('Tx history tests 2', () => { createTx.verifySummaryByName(typeChangeOwner.title, [typeGeneral.statusOk], typeChangeOwner.altImage) }) - it('Verify exapanded details for changing owner', () => { + it('Verify expanded details for changing owner', () => { createTx.clickOnTransactionItemByName(typeChangeOwner.title) createTx.verifyExpandedDetails([ typeChangeOwner.description, @@ -99,7 +99,7 @@ describe('Tx history tests 2', () => { createTx.verifySummaryByName(typeRemoveOwner.title, [typeGeneral.statusOk], typeRemoveOwner.altImage) }) - it('Verify exapanded details for removing owner', () => { + it('Verify expanded details for removing owner', () => { createTx.clickOnTransactionItemByName(typeRemoveOwner.title) createTx.verifyExpandedDetails( [ @@ -114,12 +114,12 @@ describe('Tx history tests 2', () => { createTx.checkRequiredThreshold(1) }) - // Disbale module + // Disable module it('Verify summary for disable module', () => { createTx.verifySummaryByName(typeDisableOwner.title, [typeGeneral.statusOk], typeDisableOwner.altImage) }) - it('Verify exapanded details for disable module', () => { + it('Verify expanded details for disable module', () => { createTx.clickOnTransactionItemByName(typeDisableOwner.title) createTx.verifyExpandedDetails([ typeDisableOwner.description, @@ -138,7 +138,7 @@ describe('Tx history tests 2', () => { ) }) - it('Verify exapanded details for changing threshold', () => { + it('Verify expanded details for changing threshold', () => { createTx.clickOnTransactionItemByName(typeChangeThreshold.title) createTx.verifyExpandedDetails( [