chore: tests passing (#2231)
This commit is contained in:
parent
246c07f355
commit
5b826f89d8
@ -116,7 +116,7 @@ context(
|
|||||||
cy.get(newProposalSubmitButton).click();
|
cy.get(newProposalSubmitButton).click();
|
||||||
cy.get(feedbackError).should(
|
cy.get(feedbackError).should(
|
||||||
'have.text',
|
'have.text',
|
||||||
'proposal_submission.terms.closing_timestamp: cannot be after enactment time'
|
'Invalid params: proposal_submission.terms.closing_timestamp (cannot be after enactment time)'
|
||||||
);
|
);
|
||||||
cy.get(dialogCloseButton).click();
|
cy.get(dialogCloseButton).click();
|
||||||
cy.get(minVoteDeadline).click();
|
cy.get(minVoteDeadline).click();
|
||||||
@ -157,7 +157,7 @@ context(
|
|||||||
cy.contains('Transaction failed', proposalTimeout).should('be.visible');
|
cy.contains('Transaction failed', proposalTimeout).should('be.visible');
|
||||||
cy.get(feedbackError).should(
|
cy.get(feedbackError).should(
|
||||||
'have.text',
|
'have.text',
|
||||||
'*: unknown field "signers" in vega.DataSourceDefinition'
|
'Invalid params: the transaction is malformed'
|
||||||
);
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -28,7 +28,6 @@ context(
|
|||||||
before('visit staking tab and connect vega wallet', function () {
|
before('visit staking tab and connect vega wallet', function () {
|
||||||
cy.visit('/');
|
cy.visit('/');
|
||||||
cy.verify_page_header('The $VEGA token');
|
cy.verify_page_header('The $VEGA token');
|
||||||
cy.vega_wallet_connect();
|
|
||||||
cy.vega_wallet_set_specified_approval_amount('1000');
|
cy.vega_wallet_set_specified_approval_amount('1000');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
@ -43,10 +43,6 @@ context(
|
|||||||
it('Able to open withdrawal form with vega wallet connected', function () {
|
it('Able to open withdrawal form with vega wallet connected', function () {
|
||||||
// needs to reload page for withdrawal form to be displayed in ci - not reproducible outside of ci
|
// needs to reload page for withdrawal form to be displayed in ci - not reproducible outside of ci
|
||||||
cy.getByTestId(withdraw).should('be.visible').click();
|
cy.getByTestId(withdraw).should('be.visible').click();
|
||||||
cy.visit('/');
|
|
||||||
cy.navigate_to('withdrawals');
|
|
||||||
cy.ethereum_wallet_connect();
|
|
||||||
cy.getByTestId(withdraw).should('be.visible').click();
|
|
||||||
cy.getByTestId(selectAsset)
|
cy.getByTestId(selectAsset)
|
||||||
.find('option')
|
.find('option')
|
||||||
.should('have.length.at.least', 2);
|
.should('have.length.at.least', 2);
|
||||||
|
@ -93,6 +93,7 @@ Cypress.Commands.add('faucet_asset', function (assetEthAddress) {
|
|||||||
Cypress.Commands.add('vega_wallet_teardown', function () {
|
Cypress.Commands.add('vega_wallet_teardown', function () {
|
||||||
cy.get(vegaWalletContainer).within(() => {
|
cy.get(vegaWalletContainer).within(() => {
|
||||||
cy.get(vegaWalletAssociatedBalance)
|
cy.get(vegaWalletAssociatedBalance)
|
||||||
|
.first()
|
||||||
.invoke('text')
|
.invoke('text')
|
||||||
.then((balance) => {
|
.then((balance) => {
|
||||||
if (balance != '0.00') {
|
if (balance != '0.00') {
|
||||||
@ -100,6 +101,10 @@ Cypress.Commands.add('vega_wallet_teardown', function () {
|
|||||||
cy.vega_wallet_teardown_staking(this.stakingBridgeContract);
|
cy.vega_wallet_teardown_staking(this.stakingBridgeContract);
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
cy.get('[data-test-id="associated-amount"]', { timeout: 30000 }).should(
|
||||||
|
'contain.text',
|
||||||
|
'0.00'
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
cy.get(vegaWalletContainer).within(() => {
|
cy.get(vegaWalletContainer).within(() => {
|
||||||
|
Loading…
Reference in New Issue
Block a user