Skip to content

Commit

Permalink
adding PROD to describe
Browse files Browse the repository at this point in the history
  • Loading branch information
francovenica committed Sep 19, 2024
1 parent f1f8bea commit 62c509a
Show file tree
Hide file tree
Showing 14 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion cypress/e2e/prodhealthcheck/add_owner.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let staticSafes = []
const walletCredentials = JSON.parse(Cypress.env('CYPRESS_WALLET_CREDENTIALS'))
const signer = walletCredentials.OWNER_4_PRIVATE_KEY

describe('Add Owners tests', () => {
describe('[PROD] Add Owners tests', () => {
before(async () => {
staticSafes = await getSafes(CATEGORIES.static)
})
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/prodhealthcheck/create_tx.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function happyPathToStepTwo() {
createtx.clickOnNextBtn()
}

describe.skip('Create transactions tests', () => {
describe.skip('[PROD] Create transactions tests', () => {
before(async () => {
staticSafes = await getSafes(CATEGORIES.static)
})
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/prodhealthcheck/messages_onchain.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ let staticSafes = []

const typeMessagesOnchain = msg_data.type.onChain

describe('Onchain Messages tests', () => {
describe('[PROD] Onchain Messages tests', () => {
before(async () => {
staticSafes = await getSafes(CATEGORIES.static)
})
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/prodhealthcheck/nfts.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ let nftsSafes,
const walletCredentials = JSON.parse(Cypress.env('CYPRESS_WALLET_CREDENTIALS'))
const signer = walletCredentials.OWNER_4_PRIVATE_KEY

describe.skip('NFTs tests', () => {
describe.skip('[PROD] NFTs tests', () => {
before(() => {
getSafes(CATEGORIES.nfts)
.then((nfts) => {
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/prodhealthcheck/recovery.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import { getSafes, CATEGORIES } from '../../support/safes/safesHandler.js'
let recoverySafes,
staticSafes = []

describe('Production recovery health check tests', { defaultCommandTimeout: 50000 }, () => {
describe('[PROD] Production recovery health check tests', { defaultCommandTimeout: 50000 }, () => {
before(() => {
getSafes(CATEGORIES.recovery)
.then((recoveries) => {
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/prodhealthcheck/remove_owner.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ let staticSafes = []
const walletCredentials = JSON.parse(Cypress.env('CYPRESS_WALLET_CREDENTIALS'))
const signer = walletCredentials.OWNER_4_PRIVATE_KEY

describe('Remove Owners tests', () => {
describe('[PROD] Remove Owners tests', () => {
before(async () => {
staticSafes = await getSafes(CATEGORIES.static)
})
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/prodhealthcheck/sidebar.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let staticSafes = []
const walletCredentials = JSON.parse(Cypress.env('CYPRESS_WALLET_CREDENTIALS'))
const signer = walletCredentials.OWNER_4_PRIVATE_KEY

describe('Sidebar tests', () => {
describe('[PROD] Sidebar tests', () => {
before(async () => {
staticSafes = await getSafes(CATEGORIES.static)
})
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/prodhealthcheck/sidebar_3.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const signer = walletCredentials.OWNER_4_PRIVATE_KEY
const signer1 = walletCredentials.OWNER_1_PRIVATE_KEY
const signer2 = walletCredentials.OWNER_3_PRIVATE_KEY

describe.skip('Sidebar tests 3', () => {
describe.skip('[PROD] Sidebar tests 3', () => {
before(async () => {
staticSafes = await getSafes(CATEGORIES.static)
})
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/prodhealthcheck/spending_limits.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const tokenAmount = 0.1
const newTokenAmount = 0.001
const spendingLimitBalance = '(0.15 ETH)'

describe('Spending limits tests', () => {
describe('[PROD] Spending limits tests', () => {
before(async () => {
staticSafes = await getSafes(CATEGORIES.static)
})
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/prodhealthcheck/swaps_history_2.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ let staticSafes = []

const swapsHistory = swaps_data.type.history

describe('Swaps history tests 2', () => {
describe('[PROD] Swaps history tests 2', () => {
before(async () => {
staticSafes = await getSafes(CATEGORIES.static)
})
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/prodhealthcheck/swaps_tokens.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ const signer = walletCredentials.OWNER_4_PRIVATE_KEY

let iframeSelector = `iframe[src*="${constants.swapWidget}"]`

describe('[SMOKE] Swaps token tests', () => {
describe('[PROD] Swaps token tests', () => {
before(async () => {
staticSafes = await getSafes(CATEGORIES.static)
})
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/prodhealthcheck/tokens.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const FIAT_AMOUNT_COLUMN = 2

let staticSafes = []

describe('Prod tokens tests', () => {
describe('[PROD] Prod tokens tests', () => {
const fiatRegex = assets.fiatRegex

before(async () => {
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/prodhealthcheck/tx_history.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ const typeDeleteAllowance = data.type.deleteSpendingLimit
const typeSideActions = data.type.sideActions
const typeGeneral = data.type.general

describe('Tx history tests 1', () => {
describe('[PROD] Tx history tests 1', () => {
before(async () => {
staticSafes = await getSafes(CATEGORIES.static)
})
Expand Down
2 changes: 1 addition & 1 deletion cypress/e2e/prodhealthcheck/tx_history_2.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const typeSideActions = data.type.sideActions
const typeGeneral = data.type.general
const typeUntrustedToken = data.type.untrustedReceivedToken

describe('Tx history tests 2', () => {
describe('[PROD] Tx history tests 2', () => {
before(async () => {
staticSafes = await getSafes(CATEGORIES.static)
})
Expand Down

0 comments on commit 62c509a

Please sign in to comment.