chore(trading): increase withdraw ac test coverage (#2853)
This commit is contained in:
parent
965e2d8972
commit
06ea3924fa
@ -24,7 +24,10 @@ const txTimeout = Cypress.env('txTimeout');
|
|||||||
const sepoliaUrl = Cypress.env('ETHERSCAN_URL');
|
const sepoliaUrl = Cypress.env('ETHERSCAN_URL');
|
||||||
const btcName =
|
const btcName =
|
||||||
'BTC (local)5cfa87844724df6069b94e4c8a6f03af21907d7bc251593d08e4251043ee9f7c - tBTC';
|
'BTC (local)5cfa87844724df6069b94e4c8a6f03af21907d7bc251593d08e4251043ee9f7c - tBTC';
|
||||||
|
const vegaName =
|
||||||
|
'Vegab4f2726571fbe8e33b442dc92ed2d7f0d810e21835b7371a7915a365f07ccd9b - VEGA';
|
||||||
const btcSymbol = 'tBTC';
|
const btcSymbol = 'tBTC';
|
||||||
|
const vegaSymbol = 'VEGA';
|
||||||
const usdcSymbol = 'fUSDC';
|
const usdcSymbol = 'fUSDC';
|
||||||
const toastContent = 'toast-content';
|
const toastContent = 'toast-content';
|
||||||
const ordersTab = 'Orders';
|
const ordersTab = 'Orders';
|
||||||
@ -33,9 +36,112 @@ const toastCloseBtn = 'toast-close';
|
|||||||
const price = '390';
|
const price = '390';
|
||||||
const size = '0.0005';
|
const size = '0.0005';
|
||||||
const newPrice = '200';
|
const newPrice = '200';
|
||||||
|
const completeWithdrawalBtn = 'complete-withdrawal';
|
||||||
|
|
||||||
// TODO: ensure this test runs only if capsule is running via workflow
|
|
||||||
// Because the tests are run on a live network to optimize time, the tests are interdependent and must be run in the given order.
|
// Because the tests are run on a live network to optimize time, the tests are interdependent and must be run in the given order.
|
||||||
|
describe('capsule - without MultiSign', { tags: '@slow' }, () => {
|
||||||
|
before(() => {
|
||||||
|
cy.createMarket();
|
||||||
|
cy.get('@markets').then((markets) => {
|
||||||
|
cy.wrap(markets[0]).as('market');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
beforeEach(() => {
|
||||||
|
cy.setVegaWallet();
|
||||||
|
});
|
||||||
|
|
||||||
|
it('can deposit', function () {
|
||||||
|
cy.visit('/#/portfolio');
|
||||||
|
cy.get('main[data-testid="/portfolio"]').should('exist');
|
||||||
|
|
||||||
|
// 1001-DEPO-001
|
||||||
|
// 1001-DEPO-002
|
||||||
|
// 1001-DEPO-003
|
||||||
|
// 1001-DEPO-005
|
||||||
|
// 1001-DEPO-006
|
||||||
|
// 1001-DEPO-007
|
||||||
|
// 1001-DEPO-008
|
||||||
|
// 1001-DEPO-009
|
||||||
|
// 1001-DEPO-010
|
||||||
|
|
||||||
|
cy.getByTestId(depositsTab).click();
|
||||||
|
cy.getByTestId('deposit-button').click();
|
||||||
|
connectEthereumWallet('Unknown');
|
||||||
|
cy.get(assetSelectField, txTimeout).select(btcName, { force: true });
|
||||||
|
cy.getByTestId('deposit-approve-submit').click();
|
||||||
|
cy.getByTestId('dialog-title').should('contain.text', 'Approve complete');
|
||||||
|
cy.get('[data-testid="Return to deposit"]').click();
|
||||||
|
cy.get(amountField).clear().type('10');
|
||||||
|
cy.getByTestId('deposit-submit').click();
|
||||||
|
cy.getByTestId(toastContent, txTimeout).should(
|
||||||
|
'contain.text',
|
||||||
|
`Transaction confirmedYour transaction has been confirmed.View on EtherscanDeposit 10.00 ${btcSymbol}`,
|
||||||
|
{ matchCase: false }
|
||||||
|
);
|
||||||
|
cy.getByTestId(toastCloseBtn).click();
|
||||||
|
cy.getByTestId('Collateral').click();
|
||||||
|
|
||||||
|
cy.highlight('deposit verification');
|
||||||
|
|
||||||
|
cy.getByTestId('asset', txTimeout).should('contain.text', btcSymbol);
|
||||||
|
cy.getByTestId(depositsTab).click();
|
||||||
|
cy.get('.ag-cell-value', txTimeout).should('contain.text', btcSymbol);
|
||||||
|
cy.get('[col-id="status"]').should('not.have.text', 'Open', txTimeout);
|
||||||
|
|
||||||
|
cy.get('[col-id="txHash"]')
|
||||||
|
.should('have.length.above', 2)
|
||||||
|
.eq(1)
|
||||||
|
.parent()
|
||||||
|
.within(() => {
|
||||||
|
cy.get('[col-id="asset.symbol"]').should('have.text', btcSymbol);
|
||||||
|
cy.get('[col-id="amount"]').should('have.text', '10.00');
|
||||||
|
cy.get('[col-id="createdTimestamp"]').should('not.be.empty');
|
||||||
|
cy.get('[col-id="status"]').should('have.text', 'Finalized');
|
||||||
|
cy.get('[col-id="txHash"]')
|
||||||
|
.find('a')
|
||||||
|
.should('have.attr', 'href')
|
||||||
|
.and('contain', `${sepoliaUrl}/tx/0x`);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
it('can not withdrawal because of no MultiSign', function () {
|
||||||
|
// 1002-WITH-022
|
||||||
|
// 1002-WITH-023
|
||||||
|
|
||||||
|
cy.getByTestId('Withdrawals').click();
|
||||||
|
cy.getByTestId('withdraw-dialog-button').click();
|
||||||
|
cy.get(assetSelectField, txTimeout).select(btcName, { force: true });
|
||||||
|
cy.get(amountField).clear().type('1');
|
||||||
|
cy.getByTestId('submit-withdrawal').click();
|
||||||
|
cy.getByTestId(toastContent, txTimeout).should(
|
||||||
|
'contain.text',
|
||||||
|
'Funds unlocked'
|
||||||
|
);
|
||||||
|
|
||||||
|
cy.getByTestId('tab-withdrawals').within(() => {
|
||||||
|
cy.get('.ag-center-cols-container')
|
||||||
|
.children()
|
||||||
|
.first()
|
||||||
|
.within(() => {
|
||||||
|
cy.get('[col-id="status"]').should('contain.text', 'Pending');
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
|
cy.highlight('withdrawals verification');
|
||||||
|
cy.getByTestId('toast-complete-withdrawal').click();
|
||||||
|
|
||||||
|
cy.getByTestId(toastContent, txTimeout).should(
|
||||||
|
'contain.text',
|
||||||
|
'Error occurredprocessing response error'
|
||||||
|
);
|
||||||
|
cy.getByTestId(completeWithdrawalBtn).should(
|
||||||
|
'contain.text',
|
||||||
|
'Complete withdrawal'
|
||||||
|
);
|
||||||
|
});
|
||||||
|
});
|
||||||
|
|
||||||
describe('capsule', { tags: '@slow' }, () => {
|
describe('capsule', { tags: '@slow' }, () => {
|
||||||
before(() => {
|
before(() => {
|
||||||
cy.createMarket();
|
cy.createMarket();
|
||||||
@ -128,13 +234,15 @@ describe('capsule', { tags: '@slow' }, () => {
|
|||||||
cy.getByTestId('dialog-title').should('contain.text', 'Edit order');
|
cy.getByTestId('dialog-title').should('contain.text', 'Edit order');
|
||||||
cy.get('#limitPrice').focus().clear().type(newPrice);
|
cy.get('#limitPrice').focus().clear().type(newPrice);
|
||||||
cy.getByTestId('edit-order').find('[type="submit"]').click();
|
cy.getByTestId('edit-order').find('[type="submit"]').click();
|
||||||
|
|
||||||
cy.getByTestId(toastContent).should(
|
cy.getByTestId(toastContent).should(
|
||||||
'contain.text',
|
'contain.text',
|
||||||
`ConfirmedYour transaction has been confirmed View in block explorerEdit order - activeTEST.24h+${size} @ ${price}.00 ${usdcSymbol}+${size} @ ${newPrice}.00 ${usdcSymbol}`,
|
`ConfirmedYour transaction has been confirmed View in block explorerEdit order - activeTEST.24h+${size} @ ${price}.00 ${usdcSymbol}+${size} @ ${newPrice}.00 ${usdcSymbol}`,
|
||||||
{ matchCase: false }
|
{ matchCase: false }
|
||||||
);
|
);
|
||||||
cy.getByTestId(ordersTab).click();
|
|
||||||
cy.getByTestId(toastCloseBtn).click({ multiple: true });
|
cy.getByTestId(toastCloseBtn).click({ multiple: true });
|
||||||
|
cy.getByTestId(ordersTab).click();
|
||||||
cy.get('.ag-center-cols-container')
|
cy.get('.ag-center-cols-container')
|
||||||
.children()
|
.children()
|
||||||
.first()
|
.first()
|
||||||
@ -164,62 +272,8 @@ describe('capsule', { tags: '@slow' }, () => {
|
|||||||
.should('contain.text', OrderStatusMapping.STATUS_CANCELLED);
|
.should('contain.text', OrderStatusMapping.STATUS_CANCELLED);
|
||||||
});
|
});
|
||||||
|
|
||||||
it('can deposit', function () {
|
|
||||||
cy.visit('/#/portfolio');
|
|
||||||
cy.get('main[data-testid="/portfolio"]').should('exist');
|
|
||||||
|
|
||||||
// 1001-DEPO-001
|
|
||||||
// 1001-DEPO-002
|
|
||||||
// 1001-DEPO-003
|
|
||||||
// 1001-DEPO-005
|
|
||||||
// 1001-DEPO-006
|
|
||||||
// 1001-DEPO-007
|
|
||||||
// 1001-DEPO-008
|
|
||||||
// 1001-DEPO-009
|
|
||||||
// 1001-DEPO-010
|
|
||||||
|
|
||||||
cy.getByTestId(depositsTab).click();
|
|
||||||
cy.getByTestId('deposit-button').click();
|
|
||||||
connectEthereumWallet('Unknown');
|
|
||||||
cy.get(assetSelectField, txTimeout).select(btcName, { force: true });
|
|
||||||
cy.getByTestId('deposit-approve-submit').click();
|
|
||||||
cy.getByTestId('dialog-title').should('contain.text', 'Approve complete');
|
|
||||||
cy.get('[data-testid="Return to deposit"]').click();
|
|
||||||
cy.get(amountField).clear().type('1');
|
|
||||||
cy.getByTestId('deposit-submit').click();
|
|
||||||
cy.getByTestId(toastContent, txTimeout).should(
|
|
||||||
'contain.text',
|
|
||||||
`Transaction confirmedYour transaction has been confirmed.View on EtherscanDeposit 1.00 ${btcSymbol}`,
|
|
||||||
{ matchCase: false }
|
|
||||||
);
|
|
||||||
cy.getByTestId(toastCloseBtn).click();
|
|
||||||
cy.getByTestId('Collateral').click();
|
|
||||||
|
|
||||||
cy.highlight('deposit verification');
|
|
||||||
|
|
||||||
cy.getByTestId('asset', txTimeout).should('contain.text', btcSymbol);
|
|
||||||
cy.getByTestId(depositsTab).click();
|
|
||||||
cy.get('.ag-cell-value', txTimeout).should('contain.text', btcSymbol);
|
|
||||||
cy.get('[col-id="status"]').should('not.have.text', 'Open', txTimeout);
|
|
||||||
|
|
||||||
cy.get('[col-id="txHash"]')
|
|
||||||
.should('have.length.above', 2)
|
|
||||||
.eq(1)
|
|
||||||
.parent()
|
|
||||||
.within(() => {
|
|
||||||
cy.get('[col-id="asset.symbol"]').should('have.text', btcSymbol);
|
|
||||||
cy.get('[col-id="amount"]').should('have.text', '1.00');
|
|
||||||
cy.get('[col-id="createdTimestamp"]').should('not.be.empty');
|
|
||||||
cy.get('[col-id="status"]').should('have.text', 'Finalized');
|
|
||||||
cy.get('[col-id="txHash"]')
|
|
||||||
.find('a')
|
|
||||||
.should('have.attr', 'href')
|
|
||||||
.and('contain', `${sepoliaUrl}/tx/0x`);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
|
|
||||||
it('can withdrawal', function () {
|
it('can withdrawal', function () {
|
||||||
// 1002-WITH-001
|
// 1002-WITH-0014
|
||||||
// 1002-WITH-006
|
// 1002-WITH-006
|
||||||
// 1002-WITH-009
|
// 1002-WITH-009
|
||||||
// 1002-WITH-011
|
// 1002-WITH-011
|
||||||
@ -229,14 +283,18 @@ describe('capsule', { tags: '@slow' }, () => {
|
|||||||
// 1002-WITH-014
|
// 1002-WITH-014
|
||||||
// 1002-WITH-015
|
// 1002-WITH-015
|
||||||
// 1002-WITH-016
|
// 1002-WITH-016
|
||||||
|
// 1002-WITH-017
|
||||||
// 1002-WITH-019
|
// 1002-WITH-019
|
||||||
|
// 1002-WITH-020
|
||||||
|
// 1002-WITH-021
|
||||||
|
|
||||||
|
cy.visit('/#/portfolio');
|
||||||
|
cy.get('main[data-testid="/portfolio"]').should('exist');
|
||||||
|
|
||||||
cy.getByTestId('Withdrawals').click();
|
cy.getByTestId('Withdrawals').click();
|
||||||
cy.getByTestId('withdraw-dialog-button').click();
|
cy.getByTestId('withdraw-dialog-button').click();
|
||||||
cy.get(assetSelectField, txTimeout).select(
|
connectEthereumWallet('Unknown');
|
||||||
'BTC (local)5cfa87844724df6069b94e4c8a6f03af21907d7bc251593d08e4251043ee9f7c - tBTC',
|
cy.get(assetSelectField, txTimeout).select(btcName, { force: true });
|
||||||
{ force: true }
|
|
||||||
);
|
|
||||||
cy.get(amountField).clear().type('1');
|
cy.get(amountField).clear().type('1');
|
||||||
cy.getByTestId('submit-withdrawal').click();
|
cy.getByTestId('submit-withdrawal').click();
|
||||||
cy.getByTestId(toastContent, txTimeout).should(
|
cy.getByTestId(toastContent, txTimeout).should(
|
||||||
@ -255,12 +313,13 @@ describe('capsule', { tags: '@slow' }, () => {
|
|||||||
|
|
||||||
cy.highlight('withdrawals verification');
|
cy.highlight('withdrawals verification');
|
||||||
cy.getByTestId('toast-complete-withdrawal').click();
|
cy.getByTestId('toast-complete-withdrawal').click();
|
||||||
|
|
||||||
cy.getByTestId(toastContent, txTimeout).should(
|
cy.getByTestId(toastContent, txTimeout).should(
|
||||||
'contain.text',
|
'contain.text',
|
||||||
'Transaction confirmed'
|
'Transaction confirmed'
|
||||||
);
|
);
|
||||||
|
|
||||||
cy.getByTestId('complete-withdrawal', txTimeout).should('not.exist');
|
cy.getByTestId(completeWithdrawalBtn).eq(0, txTimeout).should('not.exist');
|
||||||
|
|
||||||
cy.get('[col-id="txHash"]', txTimeout)
|
cy.get('[col-id="txHash"]', txTimeout)
|
||||||
.should('have.length.above', 1)
|
.should('have.length.above', 1)
|
||||||
@ -281,9 +340,12 @@ describe('capsule', { tags: '@slow' }, () => {
|
|||||||
.should('have.attr', 'href')
|
.should('have.attr', 'href')
|
||||||
.and('contain', `${sepoliaUrl}/tx/0x`);
|
.and('contain', `${sepoliaUrl}/tx/0x`);
|
||||||
});
|
});
|
||||||
|
// comment because of bug #2819
|
||||||
|
// cy.getByTestId('withdraw-dialog-button').click();
|
||||||
|
// cy.getByTestId('BALANCE_AVAILABLE_value').should('have.text', '0')
|
||||||
});
|
});
|
||||||
|
|
||||||
it('deposit - if approved amount is less than deposit: must see that an approval is needed and be prompted to approve more', function () {
|
it('approved amount is less than deposit', function () {
|
||||||
// 1001-DEPO-006
|
// 1001-DEPO-006
|
||||||
|
|
||||||
cy.getByTestId(depositsTab).click();
|
cy.getByTestId(depositsTab).click();
|
||||||
@ -292,6 +354,67 @@ describe('capsule', { tags: '@slow' }, () => {
|
|||||||
cy.get(amountField).clear().type('20000000');
|
cy.get(amountField).clear().type('20000000');
|
||||||
cy.getByTestId('deposit-approve-submit').should('be.visible');
|
cy.getByTestId('deposit-approve-submit').should('be.visible');
|
||||||
});
|
});
|
||||||
|
|
||||||
|
it('withdraw - delay verification', function () {
|
||||||
|
// 1001-DEPO-007
|
||||||
|
// 1001-DEPO-024
|
||||||
|
|
||||||
|
cy.visit('/#/portfolio');
|
||||||
|
cy.get('main[data-testid="/portfolio"]').should('exist');
|
||||||
|
|
||||||
|
cy.getByTestId(depositsTab).click();
|
||||||
|
cy.getByTestId('deposit-button').click();
|
||||||
|
connectEthereumWallet('Unknown');
|
||||||
|
cy.get(assetSelectField, txTimeout).select(vegaName, { force: true });
|
||||||
|
cy.getByTestId('deposit-approve-submit').click();
|
||||||
|
cy.getByTestId('dialog-title').should('contain.text', 'Approve complete');
|
||||||
|
cy.get('[data-testid="Return to deposit"]').click();
|
||||||
|
cy.get(amountField).clear().type('10000');
|
||||||
|
cy.getByTestId('deposit-submit').click();
|
||||||
|
cy.getByTestId(toastContent, txTimeout).should(
|
||||||
|
'contain.text',
|
||||||
|
`Your transaction has been confirmed.`,
|
||||||
|
{ matchCase: false }
|
||||||
|
);
|
||||||
|
cy.getByTestId(toastCloseBtn).click();
|
||||||
|
cy.getByTestId('Collateral').click();
|
||||||
|
|
||||||
|
cy.highlight('deposit verification');
|
||||||
|
|
||||||
|
cy.getByTestId('asset', txTimeout).should('contain.text', vegaSymbol);
|
||||||
|
cy.getByTestId(depositsTab).click();
|
||||||
|
cy.get('.ag-cell-value', txTimeout).should('contain.text', vegaSymbol);
|
||||||
|
cy.get('[col-id="status"]').should('not.have.text', 'Open', txTimeout);
|
||||||
|
|
||||||
|
cy.get('[col-id="txHash"]')
|
||||||
|
.should('have.length.above', 2)
|
||||||
|
.eq(1)
|
||||||
|
.parent()
|
||||||
|
.within(() => {
|
||||||
|
cy.get('[col-id="asset.symbol"]').should('have.text', vegaSymbol);
|
||||||
|
cy.get('[col-id="amount"]').should('have.text', '10,000.00');
|
||||||
|
cy.get('[col-id="createdTimestamp"]').should('not.be.empty');
|
||||||
|
cy.get('[col-id="status"]').should('have.text', 'Finalized');
|
||||||
|
cy.get('[col-id="txHash"]')
|
||||||
|
.find('a')
|
||||||
|
.should('have.attr', 'href')
|
||||||
|
.and('contain', `${sepoliaUrl}/tx/0x`);
|
||||||
|
});
|
||||||
|
|
||||||
|
cy.getByTestId('Withdrawals').click();
|
||||||
|
cy.getByTestId('withdraw-dialog-button').click();
|
||||||
|
cy.get(assetSelectField, txTimeout).select(vegaName, { force: true });
|
||||||
|
cy.get(amountField).clear().type('10000');
|
||||||
|
cy.getByTestId('DELAY_TIME_value').should('have.text', '5 days');
|
||||||
|
cy.getByTestId('submit-withdrawal').click();
|
||||||
|
cy.getByTestId(toastContent, txTimeout).should(
|
||||||
|
'contain.text',
|
||||||
|
'Your funds have been unlocked'
|
||||||
|
);
|
||||||
|
cy.getByTestId(toastCloseBtn).click();
|
||||||
|
cy.getByTestId(completeWithdrawalBtn).first().should('be.visible').click();
|
||||||
|
cy.getByTestId(toastContent, txTimeout).should('contain.text', 'Delayed');
|
||||||
|
});
|
||||||
});
|
});
|
||||||
|
|
||||||
function checkIfDataAndTimeOfCreationAndUpdateIsEqual(date: string) {
|
function checkIfDataAndTimeOfCreationAndUpdateIsEqual(date: string) {
|
||||||
|
@ -41,6 +41,7 @@ describe('withdraw form validation', { tags: '@smoke' }, () => {
|
|||||||
cy.get(toAddressField).should('have.value', ethAddressValue);
|
cy.get(toAddressField).should('have.value', ethAddressValue);
|
||||||
});
|
});
|
||||||
it('min amount', () => {
|
it('min amount', () => {
|
||||||
|
// 1002-WITH-010
|
||||||
selectAsset(ASSET_SEPOLIA_TBTC);
|
selectAsset(ASSET_SEPOLIA_TBTC);
|
||||||
cy.get(amountField).clear().type('0');
|
cy.get(amountField).clear().type('0');
|
||||||
cy.getByTestId(submitWithdrawBtn).click();
|
cy.getByTestId(submitWithdrawBtn).click();
|
||||||
@ -50,6 +51,8 @@ describe('withdraw form validation', { tags: '@smoke' }, () => {
|
|||||||
);
|
);
|
||||||
});
|
});
|
||||||
it('max amount', () => {
|
it('max amount', () => {
|
||||||
|
// 1002-WITH-005
|
||||||
|
// 1002-WITH-008
|
||||||
selectAsset(ASSET_EURO); // Will be above maximum because the vega wallet doesn't have any collateral
|
selectAsset(ASSET_EURO); // Will be above maximum because the vega wallet doesn't have any collateral
|
||||||
cy.get(amountField).clear().type('1001', { delay: 100 });
|
cy.get(amountField).clear().type('1001', { delay: 100 });
|
||||||
cy.getByTestId(submitWithdrawBtn).click();
|
cy.getByTestId(submitWithdrawBtn).click();
|
||||||
@ -60,6 +63,7 @@ describe('withdraw form validation', { tags: '@smoke' }, () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('can set amount using use maximum button', () => {
|
it('can set amount using use maximum button', () => {
|
||||||
|
// 1002-WITH-004
|
||||||
selectAsset(ASSET_SEPOLIA_TBTC);
|
selectAsset(ASSET_SEPOLIA_TBTC);
|
||||||
cy.getByTestId(useMaximumAmount).click();
|
cy.getByTestId(useMaximumAmount).click();
|
||||||
cy.get(amountField).should('have.value', '1000.00000');
|
cy.get(amountField).should('have.value', '1000.00000');
|
||||||
@ -68,6 +72,9 @@ describe('withdraw form validation', { tags: '@smoke' }, () => {
|
|||||||
|
|
||||||
describe('withdraw actions', { tags: '@regression' }, () => {
|
describe('withdraw actions', { tags: '@regression' }, () => {
|
||||||
// this is extremely ugly hack, but setting it properly in contract is too much effort for such simple validation
|
// this is extremely ugly hack, but setting it properly in contract is too much effort for such simple validation
|
||||||
|
|
||||||
|
// 1002-WITH-018
|
||||||
|
|
||||||
const withdrawalThreshold =
|
const withdrawalThreshold =
|
||||||
Cypress.env('VEGA_ENV') === 'CUSTOM' ? '0.00' : '100.00';
|
Cypress.env('VEGA_ENV') === 'CUSTOM' ? '0.00' : '100.00';
|
||||||
before(() => {
|
before(() => {
|
||||||
@ -88,6 +95,8 @@ describe('withdraw actions', { tags: '@regression' }, () => {
|
|||||||
});
|
});
|
||||||
|
|
||||||
it('triggers transaction when submitted', () => {
|
it('triggers transaction when submitted', () => {
|
||||||
|
// 1002-WITH-002
|
||||||
|
// 1002-WITH-003
|
||||||
selectAsset(ASSET_SEPOLIA_TBTC);
|
selectAsset(ASSET_SEPOLIA_TBTC);
|
||||||
cy.getByTestId('BALANCE_AVAILABLE_label').should(
|
cy.getByTestId('BALANCE_AVAILABLE_label').should(
|
||||||
'contain.text',
|
'contain.text',
|
||||||
@ -108,7 +117,4 @@ describe('withdraw actions', { tags: '@regression' }, () => {
|
|||||||
cy.getByTestId(submitWithdrawBtn).click();
|
cy.getByTestId(submitWithdrawBtn).click();
|
||||||
cy.getByTestId('toast').should('contain.text', 'Awaiting confirmation');
|
cy.getByTestId('toast').should('contain.text', 'Awaiting confirmation');
|
||||||
});
|
});
|
||||||
|
|
||||||
it.skip('creates a withdrawal on submit'); // Needs capsule
|
|
||||||
it.skip('creates a withdrawal on submit and prompts to complete withdrawal'); // Needs capsule
|
|
||||||
});
|
});
|
||||||
|
Loading…
Reference in New Issue
Block a user