From c5b705ede7a8faee609a565fe03fc36646d0e8f3 Mon Sep 17 00:00:00 2001 From: hunicus <93150691+hunicus@users.noreply.github.com> Date: Fri, 17 Dec 2021 16:22:16 -0500 Subject: [PATCH] Adjust bisq cypress tests --- frontend/cypress/integration/bisq/bisq.spec.ts | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/frontend/cypress/integration/bisq/bisq.spec.ts b/frontend/cypress/integration/bisq/bisq.spec.ts index 0271ca775..3cea27781 100644 --- a/frontend/cypress/integration/bisq/bisq.spec.ts +++ b/frontend/cypress/integration/bisq/bisq.spec.ts @@ -59,9 +59,8 @@ describe('Bisq', () => { cy.visit(`${basePath}`); cy.waitForSkeletonGone(); cy.get('li:nth-of-type(5) > a').click().then(() => { - cy.get('.card').should('have.length.at.least', 1); - cy.get('.card').first().click(); - cy.get('.card-body'); + cy.get('.section-header').should('have.length.at.least', 1); + cy.get('.endpoint-container').should('have.length.at.least', 1); }); });