diff --git a/apps/trading-e2e/src/integration/navbar.cy.ts b/apps/trading-e2e/src/integration/navbar.cy.ts index 67f9f900b..25a740628 100644 --- a/apps/trading-e2e/src/integration/navbar.cy.ts +++ b/apps/trading-e2e/src/integration/navbar.cy.ts @@ -23,6 +23,7 @@ describe('Desktop view', { tags: '@smoke' }, () => { cy.wrap(element) .get('span.absolute.md\\:h-1.w-full') .should('exist'); + cy.contains('No market').should('not.exist'); cy.location('hash').should('equal', hashes[index]); }); }); @@ -68,6 +69,7 @@ describe('Mobile view', { tags: '@smoke' }, () => { cy.getByTestId('button-menu-drawer').click(); cy.getByTestId('menu-drawer').within((el) => { cy.wrap(el).getByTestId('Trading').click(); + cy.contains('No market').should('not.exist'); cy.location('hash').should('equal', '#/markets/market-1'); }); });