Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/dev' into human-readable-v2-small
Browse files Browse the repository at this point in the history
  • Loading branch information
usame-algan committed Sep 19, 2023
2 parents 9c4f303 + 20eb921 commit 7f6abcb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/pages/batches.pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ function fillTransactionData(EOA, amount) {
}

function setNonceAndProceed(currentNonce) {
cy.get(nonceInput).clear().type(currentNonce, { force: true }).type('{enter}', { force: true })
cy.get(nonceInput).clear().type(currentNonce, { force: true }).blur()
cy.contains(executeBtn).scrollIntoView()
}

Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/pages/create_tx.pages.js
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export function verifyNativeTokenTransfer() {
}

export function changeNonce(value) {
cy.get(nonceInput).clear().type(value, { force: true }).type('{enter}', { force: true })
cy.get(nonceInput).clear().type(value, { force: true }).blur()
}

export function verifyConfirmTransactionData() {
Expand Down
6 changes: 3 additions & 3 deletions cypress/e2e/smoke/create_tx.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ describe('Queue a transaction on 1/N', () => {
main.acceptCookies()
})

it('should create and queue a transaction', () => {
it('should create a new send token transaction', () => {
createtx.clickOnNewtransactionBtn()
createtx.clickOnSendTokensBtn()
createtx.typeRecipientAddress(constants.EOA)
Expand All @@ -22,7 +22,7 @@ describe('Queue a transaction on 1/N', () => {
createtx.clickOnNextBtn()
})

it('should create a queued transaction', () => {
it('should review, edit and submit the tx', () => {
createtx.verifySubmitBtnIsEnabled()
cy.wait(1000)
createtx.verifyNativeTokenTransfer()
Expand All @@ -35,7 +35,7 @@ describe('Queue a transaction on 1/N', () => {
createtx.clickOnSignTransactionBtn()
})

it('should click the notification and see the transaction queued', () => {
it('should click on the notification and see the transaction queued', () => {
createtx.waitForProposeRequest()
createtx.clickViewTransaction()
createtx.verifySingleTxPage()
Expand Down

0 comments on commit 7f6abcb

Please sign in to comment.