Skip to content

Commit

Permalink
Remove dashboard and nfts tests from test run
Browse files Browse the repository at this point in the history
  • Loading branch information
mike10ca committed Oct 23, 2023
1 parent 4b5ca1b commit af6cd2d
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
8 changes: 4 additions & 4 deletions cypress/e2e/smoke/dashboard.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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()
})
})
10 changes: 5 additions & 5 deletions cypress/e2e/smoke/nfts.cy.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit af6cd2d

Please sign in to comment.