diff --git a/apps/stats-e2e/src/integration/app.test.ts b/apps/stats-e2e/src/integration/app.test.ts index 53c708133..61d2dc746 100644 --- a/apps/stats-e2e/src/integration/app.test.ts +++ b/apps/stats-e2e/src/integration/app.test.ts @@ -4,6 +4,6 @@ describe('stats', () => { beforeEach(() => cy.visit('/')); it('should display header based on environment name', () => { - cy.get('h3').should('have.text', `/ ${textToCheck}`); + cy.get('h3', { timeout: 10000 }).should('have.text', `/ ${textToCheck}`); }); });