From af6cd2d9657c0e1590b91ed49ce404f06527ba3e Mon Sep 17 00:00:00 2001 From: mike10ca Date: Mon, 23 Oct 2023 14:17:43 +0200 Subject: [PATCH] Remove dashboard and nfts tests from test run --- cypress/e2e/smoke/dashboard.cy.js | 8 ++++---- cypress/e2e/smoke/nfts.cy.js | 10 +++++----- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/cypress/e2e/smoke/dashboard.cy.js b/cypress/e2e/smoke/dashboard.cy.js index c3cded3269..fac9d8a91f 100644 --- a/cypress/e2e/smoke/dashboard.cy.js +++ b/cypress/e2e/smoke/dashboard.cy.js @@ -11,19 +11,19 @@ describe('Dashboard tests', () => { dashboard.verifyConnectTransactStrIsVisible() }) - it('Verify the overview widget is displayed [C56107]', () => { + it.skip('Verify the overview widget is displayed [C56107]', () => { dashboard.verifyOverviewWidgetData() }) - it('Verify the transaction queue widget is displayed [C56108]', () => { + it.skip('Verify the transaction queue widget is displayed [C56108]', () => { dashboard.verifyTxQueueWidget() }) - it('Verify the featured Safe Apps are displayed [C56109]', () => { + it.skip('Verify the featured Safe Apps are displayed [C56109]', () => { dashboard.verifyFeaturedAppsSection() }) - it('Verify the Safe Apps Section is displayed [C56110]', () => { + it.skip('Verify the Safe Apps Section is displayed [C56110]', () => { dashboard.verifySafeAppsSection() }) }) diff --git a/cypress/e2e/smoke/nfts.cy.js b/cypress/e2e/smoke/nfts.cy.js index bacadf79a0..d6cb124519 100644 --- a/cypress/e2e/smoke/nfts.cy.js +++ b/cypress/e2e/smoke/nfts.cy.js @@ -14,27 +14,27 @@ describe('NFTs tests', () => { nfts.clickOnNftsTab() }) - it('Verify that NFTs exist in the table [C56123]', () => { + it.skip('Verify that NFTs exist in the table [C56123]', () => { nfts.verifyNFTNumber(20) }) - it('Verify NFT row contains data [C56124]', () => { + it.skip('Verify NFT row contains data [C56124]', () => { nfts.verifyDataInTable(nftsName, nftsAddress, nftsTokenID) }) - it('Verify NFT preview window can be opened [C56125]', () => { + it.skip('Verify NFT preview window can be opened [C56125]', () => { nfts.openFirstNFT() nfts.verifyNameInNFTModal(nftsTokenID) nfts.verifySelectedNetwrokSepolia() nfts.closeNFTModal() }) - it('Verify NFT open does not open if no NFT exits [C56126]', () => { + it.skip('Verify NFT open does not open if no NFT exits [C56126]', () => { nfts.clickOn6thNFT() nfts.verifyNFTModalDoesNotExist() }) - it('Verify multipls NFTs can be selected and reviewed [C56127]', () => { + it.skip('Verify multipls NFTs can be selected and reviewed [C56127]', () => { nfts.verifyInitialNFTData() nfts.selectNFTs(3) nfts.deselectNFTs([2], 3)