Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cypress/e2e/happypath/recovery_hp_2.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/pages/import_export.pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down
8 changes: 4 additions & 4 deletions cypress/e2e/regression/tx_history.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down Expand Up @@ -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([
Expand All @@ -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(
[
Expand Down Expand Up @@ -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,
Expand Down
16 changes: 8 additions & 8 deletions cypress/e2e/regression/tx_history_2.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -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(
[
Expand All @@ -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(
[
Expand All @@ -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,
Expand All @@ -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(
[
Expand All @@ -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,
Expand All @@ -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(
[
Expand Down