test(explorer): successor market explorer (#4544)
This commit is contained in:
parent
30735388e8
commit
cd3acf8ff9
@ -1,8 +1,8 @@
|
|||||||
|
import { createSuccessorMarketProposal } from '../support/governance.functions';
|
||||||
|
|
||||||
context('Market page', { tags: '@regression' }, function () {
|
context('Market page', { tags: '@regression' }, function () {
|
||||||
describe('Verify elements on page', function () {
|
describe('Verify elements on page', function () {
|
||||||
const marketHeaders = 'markets-heading';
|
const marketHeaders = 'markets-heading';
|
||||||
const createdMarketId =
|
|
||||||
'2eab0e66545a789047561bc5a2e5cbc3b19eb708da41104e3cac2474ee36c4d4';
|
|
||||||
|
|
||||||
before('Create market', function () {
|
before('Create market', function () {
|
||||||
cy.visit('/');
|
cy.visit('/');
|
||||||
@ -11,7 +11,7 @@ context('Market page', { tags: '@regression' }, function () {
|
|||||||
|
|
||||||
beforeEach('Get market id', function () {
|
beforeEach('Get market id', function () {
|
||||||
cy.navigate_to('markets');
|
cy.navigate_to('markets');
|
||||||
cy.get('[col-id="id"]').eq(1).invoke('text').as('createdMarketId');
|
cy.get('[col-id="id"]').last().invoke('text').as('createdMarketId');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Market displayed on market page', function () {
|
it('Market displayed on market page', function () {
|
||||||
@ -106,6 +106,7 @@ context('Market page', { tags: '@regression' }, function () {
|
|||||||
// Able to view Json
|
// Able to view Json
|
||||||
cy.contains('View JSON').click();
|
cy.contains('View JSON').click();
|
||||||
cy.get('.language-json').should('exist');
|
cy.get('.language-json').should('exist');
|
||||||
|
cy.getByTestId('icon-cross').click();
|
||||||
});
|
});
|
||||||
|
|
||||||
// Skipping due to resize observer loop limit error
|
// Skipping due to resize observer loop limit error
|
||||||
@ -113,17 +114,60 @@ context('Market page', { tags: '@regression' }, function () {
|
|||||||
cy.common_switch_to_mobile_and_click_toggle();
|
cy.common_switch_to_mobile_and_click_toggle();
|
||||||
cy.navigate_to('markets', true);
|
cy.navigate_to('markets', true);
|
||||||
cy.getByTestId(marketHeaders).should('be.visible');
|
cy.getByTestId(marketHeaders).should('be.visible');
|
||||||
cy.get(`[row-id="${createdMarketId}"]`)
|
cy.get(`[row-id="${this.createdMarketId}"]`)
|
||||||
.should('be.visible')
|
.should('be.visible')
|
||||||
.within(() => {
|
.within(() => {
|
||||||
cy.get_element_by_col_id('code').should('have.text', 'TEST.24h');
|
cy.get_element_by_col_id('code').should('have.text', 'TEST.24h');
|
||||||
cy.get_element_by_col_id('name').should('have.text', 'Test market 1');
|
cy.get_element_by_col_id('name').should('have.text', 'Test market 1');
|
||||||
cy.get_element_by_col_id('state').should('have.text', 'Pending');
|
cy.get_element_by_col_id('state').should('have.text', 'Pending');
|
||||||
cy.get_element_by_col_id('asset').should('have.text', 'fUSDC');
|
cy.get_element_by_col_id('asset').should('have.text', 'fUSDC');
|
||||||
cy.get_element_by_col_id('id').should('have.text', createdMarketId);
|
cy.get_element_by_col_id('id').should(
|
||||||
|
'have.text',
|
||||||
|
this.createdMarketId
|
||||||
|
);
|
||||||
cy.get_element_by_col_id('actions')
|
cy.get_element_by_col_id('actions')
|
||||||
.find('a')
|
.find('a')
|
||||||
.should('have.attr', 'href', `/markets/${createdMarketId}`);
|
.should('have.attr', 'href', `/markets/${this.createdMarketId}`);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('Able to go to market details page for successor market', function () {
|
||||||
|
const successionLineItem = 'succession-line-item';
|
||||||
|
const successionLineMarketId = 'succession-line-item-market-id';
|
||||||
|
|
||||||
|
createSuccessorMarketProposal(this.createdMarketId);
|
||||||
|
cy.navigate_to('markets');
|
||||||
|
cy.reload();
|
||||||
|
cy.contains('Token test market', { timeout: 8000 }).should('be.visible');
|
||||||
|
cy.get('[row-index="0"]')
|
||||||
|
.invoke('attr', 'row-id')
|
||||||
|
.as('successorMarketId');
|
||||||
|
cy.contains('Token test market').click();
|
||||||
|
cy.getByTestId(marketHeaders).should('have.text', 'Token test market');
|
||||||
|
cy.validate_proposal_change_type('Triggering Ratio', 'Added');
|
||||||
|
cy.validate_element_from_table('Triggering Ratio', '0.7');
|
||||||
|
cy.validate_proposal_change_type('Time Window', 'Added');
|
||||||
|
cy.validate_element_from_table('Time Window', '3,600');
|
||||||
|
cy.validate_proposal_change_type('Scaling Factor', 'Added');
|
||||||
|
cy.validate_element_from_table('Scaling Factor', '10');
|
||||||
|
|
||||||
|
cy.getByTestId(successionLineItem)
|
||||||
|
.first()
|
||||||
|
.within(() => {
|
||||||
|
cy.contains('Test market 1');
|
||||||
|
cy.getByTestId(successionLineMarketId).should(
|
||||||
|
'have.text',
|
||||||
|
this.createdMarketId
|
||||||
|
);
|
||||||
|
});
|
||||||
|
cy.getByTestId(successionLineItem)
|
||||||
|
.eq(1)
|
||||||
|
.within(() => {
|
||||||
|
cy.contains('Token test market');
|
||||||
|
cy.getByTestId(successionLineMarketId).should(
|
||||||
|
'have.text',
|
||||||
|
this.successorMarketId
|
||||||
|
);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
@ -13,28 +13,31 @@ context('Proposal page', { tags: '@smoke' }, function () {
|
|||||||
it('Able to view proposal', function () {
|
it('Able to view proposal', function () {
|
||||||
cy.navigate_to('governanceProposals');
|
cy.navigate_to('governanceProposals');
|
||||||
cy.getByTestId(proposalHeading).should('be.visible');
|
cy.getByTestId(proposalHeading).should('be.visible');
|
||||||
// get first proposal in list
|
cy.contains(proposalTitle)
|
||||||
cy.get('[row-index="0"]').within(() => {
|
.parent()
|
||||||
cy.get_element_by_col_id('title').should('have.text', proposalTitle);
|
.parent()
|
||||||
cy.get_element_by_col_id('type').should('have.text', 'NewMarket');
|
.parent()
|
||||||
cy.get_element_by_col_id('state').should('have.text', 'Enacted');
|
.within(() => {
|
||||||
cy.getByTestId('vote-progress').should('be.visible');
|
cy.get_element_by_col_id('title').should('have.text', proposalTitle);
|
||||||
cy.get('[col-id="cDate"]')
|
cy.get_element_by_col_id('type').should('have.text', 'NewMarket');
|
||||||
.invoke('text')
|
cy.get_element_by_col_id('state').should('have.text', 'Enacted');
|
||||||
.should('match', dateTimeRegex);
|
cy.getByTestId('vote-progress').should('be.visible');
|
||||||
cy.get('[col-id="eDate"]')
|
cy.get('[col-id="cDate"]')
|
||||||
.invoke('text')
|
.invoke('text')
|
||||||
.should('match', dateTimeRegex);
|
.should('match', dateTimeRegex);
|
||||||
cy.getByTestId('external-link')
|
cy.get('[col-id="eDate"]')
|
||||||
.should('have.attr', 'href')
|
.invoke('text')
|
||||||
.and('contains', 'https://governance.fairground.wtf/proposals/');
|
.should('match', dateTimeRegex);
|
||||||
cy.contains('View terms').should('exist').click();
|
cy.getByTestId('external-link')
|
||||||
});
|
.should('have.attr', 'href')
|
||||||
|
.and('contains', 'https://governance.fairground.wtf/proposals/');
|
||||||
|
cy.contains('View terms').should('exist').click();
|
||||||
|
});
|
||||||
cy.getByTestId('dialog-title').should('have.text', proposalTitle);
|
cy.getByTestId('dialog-title').should('have.text', proposalTitle);
|
||||||
cy.get('.language-json').should('exist');
|
cy.get('.language-json').should('exist');
|
||||||
});
|
});
|
||||||
|
|
||||||
it('Proposal page displayed on mobile', function () {
|
it.skip('Proposal page displayed on mobile', function () {
|
||||||
cy.common_switch_to_mobile_and_click_toggle();
|
cy.common_switch_to_mobile_and_click_toggle();
|
||||||
cy.navigate_to('governanceProposals', true);
|
cy.navigate_to('governanceProposals', true);
|
||||||
cy.getByTestId(proposalHeading).should('be.visible');
|
cy.getByTestId(proposalHeading).should('be.visible');
|
||||||
|
@ -127,3 +127,10 @@ Cypress.Commands.add(
|
|||||||
.should('have.text', tableRowValue);
|
.should('have.text', tableRowValue);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
|
|
||||||
|
Cypress.Commands.add(
|
||||||
|
'validate_proposal_change_type',
|
||||||
|
(tableRowName, changeType) => {
|
||||||
|
cy.contains(tableRowName).siblings().should('have.text', changeType);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
130
apps/explorer-e2e/src/support/governance.functions.js
Normal file
130
apps/explorer-e2e/src/support/governance.functions.js
Normal file
@ -0,0 +1,130 @@
|
|||||||
|
export function createSuccessorMarketProposal(parentMarketId) {
|
||||||
|
cy.VegaWalletSubmitProposal(getSuccessorTxBody(parentMarketId));
|
||||||
|
}
|
||||||
|
|
||||||
|
function getSuccessorTxBody(parentMarketId) {
|
||||||
|
return {
|
||||||
|
proposalSubmission: {
|
||||||
|
rationale: {
|
||||||
|
title: 'Test successor market proposal details',
|
||||||
|
description: 'E2E test for successor market',
|
||||||
|
},
|
||||||
|
terms: {
|
||||||
|
newMarket: {
|
||||||
|
changes: {
|
||||||
|
decimalPlaces: '5',
|
||||||
|
positionDecimalPlaces: '5',
|
||||||
|
linearSlippageFactor: '0.001',
|
||||||
|
quadraticSlippageFactor: '0',
|
||||||
|
lpPriceRange: '10',
|
||||||
|
instrument: {
|
||||||
|
name: 'Token test market',
|
||||||
|
code: 'TEST.24h',
|
||||||
|
future: {
|
||||||
|
settlementAsset:
|
||||||
|
'816af99af60d684502a40824758f6b5377e6af48e50a9ee8ef478ecb879ea8bc',
|
||||||
|
quoteName: 'fUSDC',
|
||||||
|
dataSourceSpecForSettlementData: {
|
||||||
|
external: {
|
||||||
|
oracle: {
|
||||||
|
signers: [
|
||||||
|
{
|
||||||
|
pubKey: {
|
||||||
|
key: '70d14a321e02e71992fd115563df765000ccc4775cbe71a0e2f9ff5a3b9dc680',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
filters: [
|
||||||
|
{
|
||||||
|
key: {
|
||||||
|
name: 'prices.BTC.value',
|
||||||
|
type: 'TYPE_INTEGER',
|
||||||
|
numberDecimalPlaces: '0',
|
||||||
|
},
|
||||||
|
conditions: [
|
||||||
|
{
|
||||||
|
operator: 'OPERATOR_GREATER_THAN',
|
||||||
|
value: '0',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
dataSourceSpecForTradingTermination: {
|
||||||
|
external: {
|
||||||
|
oracle: {
|
||||||
|
signers: [
|
||||||
|
{
|
||||||
|
pubKey: {
|
||||||
|
key: '70d14a321e02e71992fd115563df765000ccc4775cbe71a0e2f9ff5a3b9dc680',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
],
|
||||||
|
filters: [
|
||||||
|
{
|
||||||
|
key: {
|
||||||
|
name: 'trading.terminated.ETH5',
|
||||||
|
type: 'TYPE_BOOLEAN',
|
||||||
|
},
|
||||||
|
conditions: [
|
||||||
|
{
|
||||||
|
operator: 'OPERATOR_EQUALS',
|
||||||
|
value: 'true',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
dataSourceSpecBinding: {
|
||||||
|
settlementDataProperty: 'prices.BTC.value',
|
||||||
|
tradingTerminationProperty: 'trading.terminated.ETH5',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
metadata: [
|
||||||
|
'sector:food',
|
||||||
|
'sector:materials',
|
||||||
|
'source:docs.vega.xyz',
|
||||||
|
],
|
||||||
|
priceMonitoringParameters: {
|
||||||
|
triggers: [
|
||||||
|
{
|
||||||
|
horizon: '43200',
|
||||||
|
probability: '0.9999999',
|
||||||
|
auctionExtension: '600',
|
||||||
|
},
|
||||||
|
],
|
||||||
|
},
|
||||||
|
liquidityMonitoringParameters: {
|
||||||
|
targetStakeParameters: {
|
||||||
|
timeWindow: '3600',
|
||||||
|
scalingFactor: 10,
|
||||||
|
},
|
||||||
|
triggeringRatio: '0.7',
|
||||||
|
auctionExtension: '1',
|
||||||
|
},
|
||||||
|
logNormal: {
|
||||||
|
tau: 0.0001140771161,
|
||||||
|
riskAversionParameter: 0.01,
|
||||||
|
params: {
|
||||||
|
mu: 0,
|
||||||
|
r: 0.016,
|
||||||
|
sigma: 0.5,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
successor: {
|
||||||
|
parentMarketId: parentMarketId,
|
||||||
|
insurancePoolFraction: '0.75',
|
||||||
|
},
|
||||||
|
},
|
||||||
|
},
|
||||||
|
closingTimestamp: 1695666618,
|
||||||
|
enactmentTimestamp: 1695666618,
|
||||||
|
},
|
||||||
|
},
|
||||||
|
};
|
||||||
|
}
|
@ -55,12 +55,12 @@ describe(
|
|||||||
before('connect wallets and set approval limit', function () {
|
before('connect wallets and set approval limit', function () {
|
||||||
cy.visit('/');
|
cy.visit('/');
|
||||||
ethereumWalletConnect();
|
ethereumWalletConnect();
|
||||||
// cy.associateTokensToVegaWallet('1');
|
|
||||||
});
|
});
|
||||||
|
|
||||||
beforeEach('visit proposals tab', function () {
|
beforeEach('visit proposals tab', function () {
|
||||||
cy.clearLocalStorage();
|
cy.clearLocalStorage();
|
||||||
turnTelemetryOff();
|
turnTelemetryOff();
|
||||||
|
cy.mockChainId();
|
||||||
cy.reload();
|
cy.reload();
|
||||||
waitForSpinner();
|
waitForSpinner();
|
||||||
cy.connectVegaWallet();
|
cy.connectVegaWallet();
|
||||||
|
@ -42,6 +42,7 @@ context(
|
|||||||
beforeEach('visit proposals', function () {
|
beforeEach('visit proposals', function () {
|
||||||
cy.clearLocalStorage();
|
cy.clearLocalStorage();
|
||||||
turnTelemetryOff();
|
turnTelemetryOff();
|
||||||
|
cy.mockChainId();
|
||||||
cy.reload();
|
cy.reload();
|
||||||
waitForSpinner();
|
waitForSpinner();
|
||||||
cy.connectVegaWallet();
|
cy.connectVegaWallet();
|
||||||
|
@ -82,6 +82,7 @@ context(
|
|||||||
cy.clearLocalStorage();
|
cy.clearLocalStorage();
|
||||||
turnTelemetryOff();
|
turnTelemetryOff();
|
||||||
cy.reload();
|
cy.reload();
|
||||||
|
cy.mockChainId();
|
||||||
waitForSpinner();
|
waitForSpinner();
|
||||||
cy.connectVegaWallet();
|
cy.connectVegaWallet();
|
||||||
ethereumWalletConnect();
|
ethereumWalletConnect();
|
||||||
|
@ -74,6 +74,7 @@ context(
|
|||||||
beforeEach('visit governance tab', function () {
|
beforeEach('visit governance tab', function () {
|
||||||
cy.clearLocalStorage();
|
cy.clearLocalStorage();
|
||||||
turnTelemetryOff();
|
turnTelemetryOff();
|
||||||
|
cy.mockChainId();
|
||||||
cy.reload();
|
cy.reload();
|
||||||
waitForSpinner();
|
waitForSpinner();
|
||||||
cy.connectVegaWallet();
|
cy.connectVegaWallet();
|
||||||
|
@ -42,6 +42,7 @@ describe('Governance flow for proposal list', { tags: '@slow' }, function () {
|
|||||||
cy.clearLocalStorage();
|
cy.clearLocalStorage();
|
||||||
turnTelemetryOff();
|
turnTelemetryOff();
|
||||||
cy.reload();
|
cy.reload();
|
||||||
|
cy.mockChainId();
|
||||||
waitForSpinner();
|
waitForSpinner();
|
||||||
cy.connectVegaWallet();
|
cy.connectVegaWallet();
|
||||||
ethereumWalletConnect();
|
ethereumWalletConnect();
|
||||||
|
@ -26,6 +26,7 @@ context('rewards - flow', { tags: '@slow' }, function () {
|
|||||||
before('set up environment to allow rewards', function () {
|
before('set up environment to allow rewards', function () {
|
||||||
cy.clearLocalStorage();
|
cy.clearLocalStorage();
|
||||||
turnTelemetryOff();
|
turnTelemetryOff();
|
||||||
|
cy.mockChainId();
|
||||||
cy.visit('/');
|
cy.visit('/');
|
||||||
waitForSpinner();
|
waitForSpinner();
|
||||||
ethereumWalletConnect();
|
ethereumWalletConnect();
|
||||||
|
@ -25,8 +25,6 @@ import {
|
|||||||
vegaWalletSetSpecifiedApprovalAmount,
|
vegaWalletSetSpecifiedApprovalAmount,
|
||||||
vegaWalletTeardown,
|
vegaWalletTeardown,
|
||||||
} from '../../support/wallet-functions';
|
} from '../../support/wallet-functions';
|
||||||
import { aliasGQLQuery } from '@vegaprotocol/cypress';
|
|
||||||
import { chainIdQuery, statisticsQuery } from '@vegaprotocol/mock';
|
|
||||||
|
|
||||||
const stakeValidatorListTotalStake = 'total-stake';
|
const stakeValidatorListTotalStake = 'total-stake';
|
||||||
const stakeValidatorListTotalShare = 'total-stake-share';
|
const stakeValidatorListTotalShare = 'total-stake-share';
|
||||||
@ -58,10 +56,6 @@ context(
|
|||||||
function () {
|
function () {
|
||||||
// 1002-STKE-002, 1002-STKE-032
|
// 1002-STKE-002, 1002-STKE-032
|
||||||
before('visit staking tab and connect vega wallet', function () {
|
before('visit staking tab and connect vega wallet', function () {
|
||||||
cy.mockGQL((req) => {
|
|
||||||
aliasGQLQuery(req, 'ChainId', chainIdQuery());
|
|
||||||
aliasGQLQuery(req, 'Statistics', statisticsQuery());
|
|
||||||
});
|
|
||||||
cy.visit('/');
|
cy.visit('/');
|
||||||
ethereumWalletConnect();
|
ethereumWalletConnect();
|
||||||
cy.connectVegaWallet();
|
cy.connectVegaWallet();
|
||||||
@ -72,12 +66,9 @@ context(
|
|||||||
beforeEach(
|
beforeEach(
|
||||||
'teardown wallet & drill into a specific validator',
|
'teardown wallet & drill into a specific validator',
|
||||||
function () {
|
function () {
|
||||||
cy.mockGQL((req) => {
|
|
||||||
aliasGQLQuery(req, 'ChainId', chainIdQuery());
|
|
||||||
aliasGQLQuery(req, 'Statistics', statisticsQuery());
|
|
||||||
});
|
|
||||||
cy.clearLocalStorage();
|
cy.clearLocalStorage();
|
||||||
turnTelemetryOff();
|
turnTelemetryOff();
|
||||||
|
cy.mockChainId();
|
||||||
// Go to homepage to allow wallet teardown without epoch timer refreshing page
|
// Go to homepage to allow wallet teardown without epoch timer refreshing page
|
||||||
navigateTo(navigation.home);
|
navigateTo(navigation.home);
|
||||||
vegaWalletTeardown();
|
vegaWalletTeardown();
|
||||||
|
@ -56,6 +56,7 @@ context(
|
|||||||
function () {
|
function () {
|
||||||
cy.clearLocalStorage();
|
cy.clearLocalStorage();
|
||||||
turnTelemetryOff();
|
turnTelemetryOff();
|
||||||
|
cy.mockChainId();
|
||||||
cy.reload();
|
cy.reload();
|
||||||
waitForSpinner();
|
waitForSpinner();
|
||||||
cy.connectVegaWallet();
|
cy.connectVegaWallet();
|
||||||
|
@ -6,8 +6,6 @@ import {
|
|||||||
} from '../../support/common.functions';
|
} from '../../support/common.functions';
|
||||||
import { ethereumWalletConnect } from '../../support/wallet-eth.functions';
|
import { ethereumWalletConnect } from '../../support/wallet-eth.functions';
|
||||||
import { depositAsset } from '../../support/wallet-functions';
|
import { depositAsset } from '../../support/wallet-functions';
|
||||||
import { aliasGQLQuery } from '@vegaprotocol/cypress';
|
|
||||||
import { chainIdQuery, statisticsQuery } from '@vegaprotocol/mock';
|
|
||||||
|
|
||||||
const withdraw = 'withdraw';
|
const withdraw = 'withdraw';
|
||||||
const withdrawalForm = 'withdraw-form';
|
const withdrawalForm = 'withdraw-form';
|
||||||
@ -44,22 +42,15 @@ context(
|
|||||||
{ tags: '@slow' },
|
{ tags: '@slow' },
|
||||||
function () {
|
function () {
|
||||||
before('visit withdrawals and connect vega wallet', function () {
|
before('visit withdrawals and connect vega wallet', function () {
|
||||||
cy.mockGQL((req) => {
|
|
||||||
aliasGQLQuery(req, 'ChainId', chainIdQuery());
|
|
||||||
aliasGQLQuery(req, 'Statistics', statisticsQuery());
|
|
||||||
});
|
|
||||||
cy.visit('/');
|
cy.visit('/');
|
||||||
ethereumWalletConnect();
|
ethereumWalletConnect();
|
||||||
depositAsset(usdcEthAddress, '1000', 5);
|
depositAsset(usdcEthAddress, '1000', 5);
|
||||||
});
|
});
|
||||||
|
|
||||||
beforeEach('Navigate to withdrawal page', function () {
|
beforeEach('Navigate to withdrawal page', function () {
|
||||||
cy.mockGQL((req) => {
|
|
||||||
aliasGQLQuery(req, 'ChainId', chainIdQuery());
|
|
||||||
aliasGQLQuery(req, 'Statistics', statisticsQuery());
|
|
||||||
});
|
|
||||||
cy.clearLocalStorage();
|
cy.clearLocalStorage();
|
||||||
turnTelemetryOff();
|
turnTelemetryOff();
|
||||||
|
cy.mockChainId();
|
||||||
cy.reload();
|
cy.reload();
|
||||||
waitForSpinner();
|
waitForSpinner();
|
||||||
navigateTo(navigation.withdraw);
|
navigateTo(navigation.withdraw);
|
||||||
|
@ -24,6 +24,7 @@ import { addVegaWalletSubmitLiquidityProvision } from './lib/commands/vega-walle
|
|||||||
import { addImportNodeWallets } from './lib/commands/import-node-wallets';
|
import { addImportNodeWallets } from './lib/commands/import-node-wallets';
|
||||||
import { addVegaWalletTopUpRewardsPool } from './lib/commands/vega-wallet-top-up-rewards-pool';
|
import { addVegaWalletTopUpRewardsPool } from './lib/commands/vega-wallet-top-up-rewards-pool';
|
||||||
import { addAssociateTokensToVegaWallet } from './lib/commands/associate-tokens-to-vega-wallet';
|
import { addAssociateTokensToVegaWallet } from './lib/commands/associate-tokens-to-vega-wallet';
|
||||||
|
import { addMockChainId } from './lib/commands/mock-chain-id';
|
||||||
|
|
||||||
addGetTestIdcommand();
|
addGetTestIdcommand();
|
||||||
addMockGQLCommand();
|
addMockGQLCommand();
|
||||||
@ -49,6 +50,7 @@ addVegaWalletSubmitLiquidityProvision();
|
|||||||
addImportNodeWallets();
|
addImportNodeWallets();
|
||||||
addVegaWalletTopUpRewardsPool();
|
addVegaWalletTopUpRewardsPool();
|
||||||
addAssociateTokensToVegaWallet();
|
addAssociateTokensToVegaWallet();
|
||||||
|
addMockChainId();
|
||||||
|
|
||||||
export {
|
export {
|
||||||
mockConnectWallet,
|
mockConnectWallet,
|
||||||
|
22
libs/cypress/src/lib/commands/mock-chain-id.ts
Normal file
22
libs/cypress/src/lib/commands/mock-chain-id.ts
Normal file
@ -0,0 +1,22 @@
|
|||||||
|
import { aliasGQLQuery } from '../mock-gql';
|
||||||
|
// eslint-disable-next-line @nx/enforce-module-boundaries
|
||||||
|
import { chainIdQuery, statisticsQuery } from '@vegaprotocol/mock';
|
||||||
|
|
||||||
|
declare global {
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-namespace
|
||||||
|
namespace Cypress {
|
||||||
|
// eslint-disable-next-line @typescript-eslint/no-unused-vars
|
||||||
|
interface Chainable<Subject> {
|
||||||
|
mockChainId(): void;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
export function addMockChainId() {
|
||||||
|
Cypress.Commands.add('mockChainId', () => {
|
||||||
|
cy.mockGQL((req) => {
|
||||||
|
aliasGQLQuery(req, 'ChainId', chainIdQuery());
|
||||||
|
aliasGQLQuery(req, 'Statistics', statisticsQuery());
|
||||||
|
});
|
||||||
|
});
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user