From ae51ee3e26fda31e238c13d41cbc655d4385e9ca Mon Sep 17 00:00:00 2001 From: softsimon Date: Sat, 14 Aug 2021 02:21:38 +0300 Subject: [PATCH] Removing issuance id test and fixing asset id test. --- frontend/cypress/integration/liquid/liquid.spec.ts | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/frontend/cypress/integration/liquid/liquid.spec.ts b/frontend/cypress/integration/liquid/liquid.spec.ts index 5e6dd8486..b5a736d02 100644 --- a/frontend/cypress/integration/liquid/liquid.spec.ts +++ b/frontend/cypress/integration/liquid/liquid.spec.ts @@ -75,17 +75,7 @@ describe('Liquid', () => { cy.waitForSkeletonGone(); cy.get('li:nth-of-type(5) > a').click().then(() => { cy.get('.container-xl input').click().type('Liquid CAD').then(() => { - cy.get('table tr td:nth-of-type(4) a').click(); - }); - }); - }); - - it('shows a specific asset issuance TX', () => { - cy.visit('/liquid'); - cy.waitForSkeletonGone(); - cy.get('li:nth-of-type(5) > a').click().then(() => { - cy.get('.container-xl input').click().type('Liquid CAD').then(() => { - cy.get('table tr td:nth-of-type(5) a').click(); + cy.get('table tr td:nth-of-type(1) a').click(); }); }); });