Skip to content

Commit

Permalink
Tests: fix failing tests (#3704)
Browse files Browse the repository at this point in the history
  • Loading branch information
mike10ca authored May 14, 2024
1 parent 38dbc5b commit 0b41172
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/happypath/sendfunds_connected_wallet.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { contracts, abi_qtrust, abi_nft_pc2 } from '../../support/api/contracts'
import { getSafes, CATEGORIES } from '../../support/safes/safesHandler.js'

const safeBalanceEth = 305220000000000000n
const qtrustBanance = 93000000000000000025n
const qtrustBanance = 95000000000000000025n
const transferAmount = '1'

const walletCredentials = JSON.parse(Cypress.env('CYPRESS_WALLET_CREDENTIALS'))
Expand Down
14 changes: 10 additions & 4 deletions cypress/e2e/smoke/create_tx.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -57,19 +57,25 @@ describe('[SMOKE] Create transactions tests', () => {
createtx.verifyTooltipMessage(constants.nonceTooltipMsg.muchHigherThanRecommended)
})

it.skip('[SMOKE] Verify advance parameters gas limit input', () => {
it('[SMOKE] Verify advance parameters gas limit input', () => {
cy.visit(constants.BALANCE_URL + staticSafes.SEP_STATIC_SAFE_6)
createtx.clickOnNewtransactionBtn()
createtx.clickOnSendTokensBtn()
happyPathToStepTwo()
createtx.changeNonce(currentNonce)
createtx.changeNonce('1')
createtx.selectCurrentWallet()
createtx.openExecutionParamsModal()
createtx.verifyAndSubmitExecutionParams()
})

it.skip('[SMOKE] Verify a transaction shows relayer and addToBatch button', () => {
it('[SMOKE] Verify a transaction shows relayer and addToBatch button', () => {
cy.visit(constants.BALANCE_URL + staticSafes.SEP_STATIC_SAFE_6)
createtx.clickOnNewtransactionBtn()
createtx.clickOnSendTokensBtn()
happyPathToStepTwo()
createtx.verifySubmitBtnIsEnabled()
createtx.verifyNativeTokenTransfer()
createtx.changeNonce(currentNonce)
createtx.changeNonce('1')
createtx.verifyConfirmTransactionData()
createtx.verifyRelayerAttemptsAvailable()
createtx.selectCurrentWallet()
Expand Down

0 comments on commit 0b41172

Please sign in to comment.