diff --git a/frontend/rabbi_gerzi/cypress/e2e/home.cy.ts b/frontend/rabbi_gerzi/cypress/e2e/home.cy.ts index b58c7e8..5cd32ab 100644 --- a/frontend/rabbi_gerzi/cypress/e2e/home.cy.ts +++ b/frontend/rabbi_gerzi/cypress/e2e/home.cy.ts @@ -68,3 +68,21 @@ describe('homepage core teachings grid', () => { }) }) }) + +describe('homepage unique voice section', () => { + beforeEach(() => { + cy.visit('/') + }) + + it('renders heading body and cta button', () => { + cy.get('[data-cy="unique-voice"]').within(() => { + cy.contains('h2', 'A Unique Voice for the Generation') + .should('be.visible') + cy.contains('wholly unique and much needed perspective') + .should('be.visible') + cy.contains('practically engaged positivity').should('be.visible') + cy.contains('button', "Learn about Rabbi Gerzi's Approach") + .should('be.visible') + }) + }) +})