diff --git a/apps/token-e2e/src/integration/flow/governance-flow.cy.js b/apps/token-e2e/src/integration/flow/governance-flow.cy.js
index 53e4cfa90..9f1c4261a 100644
--- a/apps/token-e2e/src/integration/flow/governance-flow.cy.js
+++ b/apps/token-e2e/src/integration/flow/governance-flow.cy.js
@@ -52,7 +52,6 @@ context(
function () {
before('connect wallets and set approval limit', function () {
cy.visit('/');
- cy.verify_page_header('The $VEGA token');
cy.get_network_parameters().then((network_parameters) => {
cy.wrap(
network_parameters['spam.protection.proposal.min.tokens'] /
@@ -132,7 +131,7 @@ context(
cy.wait_for_spinner();
cy.connectVegaWallet();
cy.ethereum_wallet_connect();
- cy.navigate_to('governance');
+ cy.navigate_to('proposals');
cy.wait_for_spinner();
});
@@ -207,7 +206,7 @@ context(
let arrayOfProposals = [];
- cy.navigate_to('governance');
+ cy.navigate_to('proposals');
cy.wait_for_spinner();
cy.get(proposalDetailsTitle)
.each((proposalTitleElement) => {
@@ -223,16 +222,16 @@ context(
it('Able to submit a valid freeform proposal - with minimum required tokens associated - but also staked', function () {
cy.ensure_specified_unstaked_tokens_are_associated('2');
- cy.navigate_to_page_if_not_already_loaded('governance');
+ cy.navigate_to_page_if_not_already_loaded('proposals');
cy.get(vegaWalletUnstakedBalance, txTimeout).should('contain', '2');
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.wait_for_spinner();
cy.click_on_validator_from_list(0);
cy.staking_validator_page_add_stake('2');
cy.get(vegaWalletStakedBalances, txTimeout).should('contain', '2');
- cy.navigate_to('governance');
+ cy.navigate_to('proposals');
cy.wait_for_spinner();
cy.go_to_make_new_proposal(governanceProposalType.FREEFORM);
cy.enter_unique_freeform_proposal_body('50', generateProposalTitle());
@@ -320,14 +319,14 @@ context(
cy.ensure_specified_unstaked_tokens_are_associated(
tokensRequiredToAchieveResult
);
- cy.navigate_to_page_if_not_already_loaded('governance');
+ cy.navigate_to_page_if_not_already_loaded('proposals');
cy.get('@submittedProposal').within(() =>
cy.get(viewProposalButton).click()
);
cy.get_proposal_information_from_table('Participation met')
.contains('👍')
.should('be.visible');
- cy.navigate_to('governance');
+ cy.navigate_to('proposals');
cy.wait_for_spinner();
cy.get('@submittedProposal').within(() =>
cy.get(voteStatus).should('have.text', 'Participation met')
@@ -378,7 +377,7 @@ context(
cy.wait_for_proposal_submitted();
cy.wait_for_proposal_sync();
- cy.navigate_to('governance');
+ cy.navigate_to('proposals');
cy.wait_for_spinner();
cy.get_submitted_proposal_from_proposal_list(proposalTitle).within(
() => cy.get(viewProposalButton).click()
@@ -523,7 +522,7 @@ context(
cy.ensure_specified_unstaked_tokens_are_associated(
tokensRequiredToAchieveResult
);
- cy.navigate_to_page_if_not_already_loaded('governance');
+ cy.navigate_to_page_if_not_already_loaded('proposals');
cy.get('@submittedProposal').within(() =>
cy.get(viewProposalButton).click()
);
@@ -611,7 +610,7 @@ context(
cy.contains('Proposal rejected', proposalTimeout).should('be.visible');
cy.get(dialogCloseButton).click();
cy.wait_for_proposal_sync();
- cy.navigate_to('governance');
+ cy.navigate_to('proposals');
cy.wait_for_spinner();
cy.get(rejectProposalsLink).click().wait_for_spinner();
cy.get('@rawProposal').then((rawProposal) => {
@@ -808,7 +807,7 @@ context(
cy.get(newProposalSubmitButton).should('be.visible').click();
cy.wait_for_proposal_submitted();
cy.wait_for_proposal_sync();
- cy.navigate_to('governance');
+ cy.navigate_to('proposals');
cy.wait_for_spinner();
}
@@ -820,7 +819,7 @@ context(
cy.wait_for_proposal_submitted();
cy.wait_for_proposal_sync();
cy.get(proposalDetailsTitle).invoke('text').as('proposalTitle');
- cy.navigate_to('governance');
+ cy.navigate_to('proposals');
cy.wait_for_spinner();
}
diff --git a/apps/token-e2e/src/integration/flow/governance-forms-flow.cy.js b/apps/token-e2e/src/integration/flow/governance-forms-flow.cy.js
index a4699ac12..656d8ac47 100644
--- a/apps/token-e2e/src/integration/flow/governance-forms-flow.cy.js
+++ b/apps/token-e2e/src/integration/flow/governance-forms-flow.cy.js
@@ -41,7 +41,6 @@ context(
function () {
before('connect wallets and set approval limit', function () {
cy.visit('/');
- cy.verify_page_header('The $VEGA token');
cy.vega_wallet_set_specified_approval_amount('1000');
});
@@ -50,7 +49,7 @@ context(
cy.wait_for_spinner();
cy.connectVegaWallet();
cy.ethereum_wallet_connect();
- cy.navigate_to('governance');
+ cy.navigate_to('proposals');
cy.wait_for_spinner();
});
@@ -74,7 +73,7 @@ context(
});
it('Unable to submit network parameter with missing/invalid fields', function () {
- cy.navigate_to_page_if_not_already_loaded('governance');
+ cy.navigate_to_page_if_not_already_loaded('proposals');
cy.go_to_make_new_proposal(governanceProposalType.NETWORK_PARAMETER);
cy.get(newProposalSubmitButton).should('be.visible').click();
cy.get(inputError).should('have.length', 3);
@@ -99,7 +98,7 @@ context(
});
it('Unable to submit network parameter proposal with vote deadline above enactment deadline', function () {
- cy.navigate_to_page_if_not_already_loaded('governance');
+ cy.navigate_to_page_if_not_already_loaded('proposals');
cy.go_to_make_new_proposal(governanceProposalType.NETWORK_PARAMETER);
cy.get(newProposalTitle).type('Test update network parameter proposal');
cy.get(newProposalDescription).type('invalid deadlines');
diff --git a/apps/token-e2e/src/integration/flow/staking-flow.cy.js b/apps/token-e2e/src/integration/flow/staking-flow.cy.js
index c63b54627..05c5c2c8d 100644
--- a/apps/token-e2e/src/integration/flow/staking-flow.cy.js
+++ b/apps/token-e2e/src/integration/flow/staking-flow.cy.js
@@ -33,7 +33,6 @@ context(
// 2001-STKE-002, 2001-STKE-032
before('visit staking tab and connect vega wallet', function () {
cy.visit('/');
- cy.verify_page_header('The $VEGA token');
cy.vega_wallet_set_specified_approval_amount('1000');
});
@@ -46,7 +45,7 @@ context(
cy.connectVegaWallet();
cy.ethereum_wallet_connect();
cy.vega_wallet_teardown();
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.wait_for_spinner();
}
);
@@ -95,7 +94,7 @@ context(
.contains(2.0, epochTimeout)
.should('be.visible');
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.validate_validator_list_total_stake_and_share('0', '2.00', '100%');
});
@@ -142,14 +141,14 @@ context(
.contains(2.0, epochTimeout)
.should('be.visible');
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.validate_validator_list_total_stake_and_share('0', '2.00', '100%');
});
it('Able to stake against a validator - using vega from both wallet and vesting contract', function () {
cy.staking_page_associate_tokens('3', { type: 'contract' });
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.staking_page_associate_tokens('4', { type: 'wallet' });
cy.get(vegaWalletUnstakedBalance, txTimeout).should(
@@ -202,7 +201,7 @@ context(
.contains(6.0, epochTimeout)
.should('be.visible');
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.validate_validator_list_total_stake_and_share('0', '6.00', '100%');
});
@@ -232,7 +231,7 @@ context(
.parent()
.should('contain', 2.0, txTimeout);
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.click_on_validator_from_list(1);
@@ -253,7 +252,7 @@ context(
.eq(1)
.should('contain', 1.0, txTimeout);
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.wait_for_spinner();
cy.get(`[row-id="${0}"]`).within(() => {
@@ -310,7 +309,7 @@ context(
txTimeout
);
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
// 2001-STKE-040
cy.click_on_validator_from_list(0);
@@ -343,7 +342,7 @@ context(
cy.get(totalStake, epochTimeout).should('contain.text', '2');
cy.get(stakeShare, epochTimeout).should('have.text', '100%');
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.validate_validator_list_total_stake_and_share('0', '2.00', '100%');
});
@@ -370,7 +369,7 @@ context(
txTimeout
);
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.click_on_validator_from_list('0');
@@ -399,7 +398,7 @@ context(
txTimeout
);
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.validate_validator_list_total_stake_and_share('0', '0.00', '0%');
});
@@ -429,7 +428,7 @@ context(
txTimeout
);
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.click_on_validator_from_list(0);
@@ -470,7 +469,7 @@ context(
txTimeout
);
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.click_on_validator_from_list(0);
@@ -536,7 +535,7 @@ context(
txTimeout
);
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.validate_validator_list_total_stake_and_share('0', '0.00', '0%');
});
@@ -590,7 +589,7 @@ context(
txTimeout
);
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.validate_validator_list_total_stake_and_share('0', '0.00', '0%');
});
@@ -637,7 +636,7 @@ context(
.should('contain', 2.0, txTimeout)
.and('contain', partValidatorId);
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.validate_validator_list_total_stake_and_share('0', '2.00', '100%');
});
diff --git a/apps/token-e2e/src/integration/flow/token-association-flow.cy.js b/apps/token-e2e/src/integration/flow/token-association-flow.cy.js
index 01b4e2fe3..4cdc1f7a1 100644
--- a/apps/token-e2e/src/integration/flow/token-association-flow.cy.js
+++ b/apps/token-e2e/src/integration/flow/token-association-flow.cy.js
@@ -7,11 +7,11 @@ const vegaWalletUnstakedBalance =
'[data-testid="vega-wallet-balance-unstaked"]';
const txTimeout = Cypress.env('txTimeout');
const vegaWalletPublicKeyShort = Cypress.env('vegaWalletPublicKeyShort');
-const ethWalletAssociateButton = '[href="/staking/associate"]';
+const ethWalletAssociateButton = '[href="/validators/associate"]';
const associateWalletRadioButton = '[data-testid="associate-radio-wallet"]';
const tokenAmountInputBox = '[data-testid="token-amount-input"]';
const tokenSubmitButton = '[data-testid="token-input-submit-button"]';
-const ethWalletDissociateButton = '[href="/staking/disassociate"]';
+const ethWalletDissociateButton = '[href="/validators/disassociate"]';
const vestingContractSection = '[data-testid="vega-in-vesting-contract"]';
const vegaInWalletSection = '[data-testid="vega-in-wallet"]';
const connectedVegaKey = '[data-testid="connected-vega-key"]';
@@ -27,7 +27,6 @@ context(
function () {
before('visit staking tab and connect vega wallet', function () {
cy.visit('/');
- cy.verify_page_header('The $VEGA token');
cy.vega_wallet_set_specified_approval_amount('1000');
});
@@ -40,7 +39,7 @@ context(
cy.connectVegaWallet();
cy.ethereum_wallet_connect();
cy.vega_wallet_teardown();
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.wait_for_spinner();
}
);
@@ -257,7 +256,7 @@ context(
cy.get(vegaWalletAssociatedBalance, txTimeout).should('contain', 52);
});
- cy.navigate_to('staking');
+ cy.navigate_to('validators');
cy.staking_page_disassociate_tokens('9', { type: 'wallet' });
cy.get(vegaInWalletSection).within(() => {
diff --git a/apps/token-e2e/src/integration/flow/withdrawal-flow.cy.js b/apps/token-e2e/src/integration/flow/withdrawal-flow.cy.js
index 86a917307..b98fc5d0e 100644
--- a/apps/token-e2e/src/integration/flow/withdrawal-flow.cy.js
+++ b/apps/token-e2e/src/integration/flow/withdrawal-flow.cy.js
@@ -33,7 +33,7 @@ context(
beforeEach('Navigate to withdrawal page', function () {
cy.reload();
cy.visit('/');
- cy.navigate_to('withdrawals');
+ cy.navigate_to('withdraw');
cy.wait_for_spinner();
cy.connectVegaWallet();
cy.ethereum_wallet_connect();
diff --git a/apps/token-e2e/src/integration/view/governance.cy.js b/apps/token-e2e/src/integration/view/governance.cy.js
index 0b09cd58e..cc91b4905 100644
--- a/apps/token-e2e/src/integration/view/governance.cy.js
+++ b/apps/token-e2e/src/integration/view/governance.cy.js
@@ -9,12 +9,12 @@ context(
{ tags: '@smoke' },
function () {
before('navigate to governance page', function () {
- cy.visit('/').navigate_to('governance');
+ cy.visit('/').navigate_to('proposals');
});
describe('with no network change proposals', function () {
it('should have governance tab highlighted', function () {
- cy.verify_tab_highlighted('governance');
+ cy.verify_tab_highlighted('proposals');
});
it('should have GOVERNANCE header visible', function () {
@@ -49,7 +49,7 @@ context(
.should('be.visible')
.and('have.text', 'New proposal')
.and('have.attr', 'href')
- .and('equal', '/governance/propose');
+ .and('equal', '/proposals/propose');
});
// Skipping this test for now, the new proposal button no longer takes a user directly
@@ -60,7 +60,7 @@ context(
cy.get(connectToVegaWalletButton)
.should('be.visible')
.and('have.text', 'Connect Vega wallet');
- cy.navigate_to('governance');
+ cy.navigate_to('proposals');
cy.wait_for_spinner();
});
});
diff --git a/apps/token-e2e/src/integration/view/home.cy.js b/apps/token-e2e/src/integration/view/home.cy.js
index 1759f1f75..c9d5a0983 100644
--- a/apps/token-e2e/src/integration/view/home.cy.js
+++ b/apps/token-e2e/src/integration/view/home.cy.js
@@ -1,10 +1,10 @@
const navSection = 'nav';
-const navHome = '[href="/"]';
-const navVesting = '[href="/vesting"]';
-const navStaking = '[href="/staking"]';
+const navVesting = '[href="/token/tranches"]';
+const navToken = '[href="/token"]';
+const navStaking = '[href="/validators"]';
const navRewards = '[href="/rewards"]';
-const navWithdraw = '[href="/withdrawals"]';
-const navGovernance = '[href="/governance"]';
+const navWithdraw = '[href="/token/withdraw"]';
+const navGovernance = '[href="/proposals"]';
const tokenDetailsTable = '.token-details';
const address = '[data-testid="token-address"]';
@@ -25,7 +25,7 @@ const vegaTokenContractAddress = Cypress.env('vegaTokenContractAddress');
context('Home Page - verify elements on page', { tags: '@smoke' }, function () {
before('visit token home page', function () {
- cy.visit('/');
+ cy.visit('/token');
});
describe('with wallets disconnected', function () {
@@ -34,9 +34,9 @@ context('Home Page - verify elements on page', { tags: '@smoke' }, function () {
});
describe('Navigation tabs', function () {
- it('should have HOME tab', function () {
+ it('should have TOKEN tab', function () {
cy.get(navSection).within(() => {
- cy.get(navHome).should('be.visible');
+ cy.get(navToken).should('be.visible');
});
});
it('should have VESTING tab', function () {
@@ -106,14 +106,14 @@ context('Home Page - verify elements on page', { tags: '@smoke' }, function () {
cy.get(tranchesLink)
.should('be.visible')
.and('have.attr', 'href')
- .and('equal', '/tranches');
+ .and('equal', '/token/tranches');
});
it('should have REDEEM button', function () {
cy.get(redeemBtn)
.should('be.visible')
.parent()
.should('have.attr', 'href')
- .and('equal', '/vesting');
+ .and('equal', '/token/redeem');
});
it('should have GET VEGA WALLET link', function () {
cy.get(getVegaWalletLink)
@@ -125,21 +125,21 @@ context('Home Page - verify elements on page', { tags: '@smoke' }, function () {
cy.get(associateVegaLink)
.should('be.visible')
.and('have.attr', 'href')
- .and('equal', '/staking/associate');
+ .and('equal', '/validators/associate');
});
it('should have STAKING button', function () {
cy.get(stakingBtn)
.should('be.visible')
.parent()
.should('have.attr', 'href')
- .and('equal', '/staking');
+ .and('equal', '/validators');
});
it('should have GOVERNANCE button', function () {
cy.get(governanceBtn)
.should('be.visible')
.parent()
.should('have.attr', 'href')
- .and('equal', '/governance');
+ .and('equal', '/proposals');
});
});
});
diff --git a/apps/token-e2e/src/integration/view/staking.cy.js b/apps/token-e2e/src/integration/view/staking.cy.js
index 8a7d95f64..fb4dd125c 100644
--- a/apps/token-e2e/src/integration/view/staking.cy.js
+++ b/apps/token-e2e/src/integration/view/staking.cy.js
@@ -15,13 +15,13 @@ const stakeNumberRegex = /^\d*\.?\d*$/;
context('Staking Page - verify elements on page', function () {
before('navigate to staking page', function () {
- cy.visit('/').navigate_to('staking');
+ cy.visit('/').navigate_to('validators');
});
describe('with wallets disconnected', { tags: '@smoke' }, function () {
describe('description section', function () {
it('Should have staking tab highlighted', function () {
- cy.verify_tab_highlighted('staking');
+ cy.verify_tab_highlighted('validators');
});
it('Should have STAKING ON VEGA header visible', function () {
diff --git a/apps/token-e2e/src/integration/view/vesting.cy.js b/apps/token-e2e/src/integration/view/vesting.cy.js
index 30bebd176..93910b134 100644
--- a/apps/token-e2e/src/integration/view/vesting.cy.js
+++ b/apps/token-e2e/src/integration/view/vesting.cy.js
@@ -5,11 +5,10 @@ context(
'Vesting Page - verify elements on page',
{ tags: '@smoke' },
function () {
- before('navigate to vesting page', function () {
- cy.visit('/').navigate_to('vesting');
- });
-
describe('with wallets disconnected', function () {
+ before('navigate to vesting page', function () {
+ cy.visit('/').navigate_to('vesting');
+ });
it('should have vesting tab highlighted', function () {
cy.verify_tab_highlighted('vesting');
});
@@ -32,15 +31,16 @@ context(
describe('with eth wallet connected', function () {
before('connect eth wallet', function () {
cy.ethereum_wallet_connect();
+ cy.visit('/');
});
// 1005-VEST-001
// 1005-VEST-002
it('Able to view tranches', function () {
- cy.get('[href="/tranches"]')
- .should('have.text', 'all tranches')
+ cy.get('[href="/token/tranches"]')
+ .should('have.text', 'Supply & Vesting')
.click();
- cy.url().should('include', '/tranches');
+ cy.url().should('include', '/token/tranches');
cy.get('h1').should('contain.text', 'Vesting tranches');
});
});
diff --git a/apps/token-e2e/src/integration/view/wallet-eth.cy.js b/apps/token-e2e/src/integration/view/wallet-eth.cy.js
index 2b2e4658b..ea7edd0d3 100644
--- a/apps/token-e2e/src/integration/view/wallet-eth.cy.js
+++ b/apps/token-e2e/src/integration/view/wallet-eth.cy.js
@@ -2,8 +2,8 @@ const walletContainer = '[data-testid="ethereum-wallet"]';
const walletHeader = '[data-testid="wallet-header"] h1';
const connectToEthButton = '[data-testid="connect-to-eth-wallet-button"]';
const connectorList = '[data-testid="web3-connector-list"]';
-const associate = '[href="/staking/associate"]';
-const disassociate = '[href="/staking/disassociate"]';
+const associate = '[href="/validators/associate"]';
+const disassociate = '[href="/validators/disassociate"]';
const disconnect = '[data-testid="disconnect-from-eth-wallet-button"]';
const accountNo = '[data-testid="ethereum-account-truncated"]';
const currencyTitle = '[data-testid="currency-title"]';
diff --git a/apps/token-e2e/src/integration/view/wallet-vega.cy.js b/apps/token-e2e/src/integration/view/wallet-vega.cy.js
index 27f589e9f..59ac74cc0 100644
--- a/apps/token-e2e/src/integration/view/wallet-vega.cy.js
+++ b/apps/token-e2e/src/integration/view/wallet-vega.cy.js
@@ -18,8 +18,8 @@ const walletName = '[data-testid="wallet-name"]';
const currencyTitle = '[data-testid="currency-title"]';
const currencyValue = '[data-testid="currency-value"]';
const vegaUnstaked = '[data-testid="vega-wallet-balance-unstaked"] .text-right';
-const governanceBtn = '[href="/governance"]';
-const stakingBtn = '[href="/staking"]';
+const governanceBtn = '[href="/proposals"]';
+const stakingBtn = '[href="/validators"]';
const manageLink = '[data-testid="manage-vega-wallet"]';
const dialogVegaKey = '[data-testid="vega-public-key-full"]';
const dialogDisconnectBtn = '[data-testid="disconnect"]';
diff --git a/apps/token-e2e/src/integration/view/withdraw.cy.js b/apps/token-e2e/src/integration/view/withdraw.cy.js
index f817a24c6..1b9d5d32e 100644
--- a/apps/token-e2e/src/integration/view/withdraw.cy.js
+++ b/apps/token-e2e/src/integration/view/withdraw.cy.js
@@ -5,12 +5,12 @@ context(
{ tags: '@smoke' },
function () {
before('navigate to withdrawals page', function () {
- cy.visit('/').navigate_to('withdrawals');
+ cy.visit('/').navigate_to('withdraw');
});
describe('with wallets disconnected', function () {
it('should have withdraw tab highlighted', function () {
- cy.verify_tab_highlighted('withdrawals');
+ cy.verify_tab_highlighted('withdraw');
});
it('should have WITHDRAW header visible', function () {
diff --git a/apps/token-e2e/src/support/common.functions.js b/apps/token-e2e/src/support/common.functions.js
index 4266ef186..da0c1ef62 100644
--- a/apps/token-e2e/src/support/common.functions.js
+++ b/apps/token-e2e/src/support/common.functions.js
@@ -8,13 +8,13 @@ Cypress.Commands.add(
const navigation = {
section: 'nav',
- home: '[href="/"]',
- vesting: '[href="/vesting"]',
- staking: '[href="/staking"]',
+ vesting: '[href="/token/redeem"]',
+ validators: '[href="/validators"]',
rewards: '[href="/rewards"]',
- withdrawals: '[href="/withdrawals"]',
- governance: '[href="/governance"]',
+ withdraw: '[href="/token/withdraw"]',
+ proposals: '[href="/proposals"]',
pageSpinner: '[data-testid="splash-loader"]',
+ token: '[href="/token"]',
};
Cypress.Commands.add('navigate_to', (page) => {
diff --git a/apps/token-e2e/src/support/governance.functions.js b/apps/token-e2e/src/support/governance.functions.js
index 72162dc43..0060a2e3f 100644
--- a/apps/token-e2e/src/support/governance.functions.js
+++ b/apps/token-e2e/src/support/governance.functions.js
@@ -172,9 +172,9 @@ Cypress.Commands.add('get_sort_order_of_supplied_array', (suppliedArray) => {
});
Cypress.Commands.add('go_to_make_new_proposal', (proposalType) => {
- cy.navigate_to_page_if_not_already_loaded('governance');
+ cy.navigate_to_page_if_not_already_loaded('proposals');
cy.get(newProposalButton).should('be.visible').click();
- cy.url().should('include', '/governance/propose');
+ cy.url().should('include', '/proposals/propose');
cy.wait_for_spinner();
cy.get('li').contains(proposalType).click();
});
diff --git a/apps/token-e2e/src/support/staking.functions.js b/apps/token-e2e/src/support/staking.functions.js
index 9d41b6e74..c1197fd16 100644
--- a/apps/token-e2e/src/support/staking.functions.js
+++ b/apps/token-e2e/src/support/staking.functions.js
@@ -3,8 +3,8 @@ const tokenSubmitButton = '[data-testid="token-input-submit-button"]';
const tokenInputApprove = '[data-testid="token-input-approve-button"]';
const addStakeRadioButton = '[data-testid="add-stake-radio"]';
const removeStakeRadioButton = '[data-testid="remove-stake-radio"]';
-const ethWalletAssociateButton = '[href="/staking/associate"]';
-const ethWalletDissociateButton = '[href="/staking/disassociate"]';
+const ethWalletAssociateButton = '[href="/validators/associate"]';
+const ethWalletDissociateButton = '[href="/validators/disassociate"]';
const vegaWalletUnstakedBalance =
'[data-testid="vega-wallet-balance-unstaked"]';
const vegaWalletAssociatedBalance = '[data-testid="currency-value"]';
diff --git a/apps/token/src/app.tsx b/apps/token/src/app.tsx
index 579942f93..ab1bdf15a 100644
--- a/apps/token/src/app.tsx
+++ b/apps/token/src/app.tsx
@@ -88,7 +88,7 @@ const Web3Container = ({
-
-
- {fairground ? t('fairgroundTitle') : t('title')}
-
-