describe('Smoke test', () => { it('loads the home page', () => { cy.visit('/') cy.contains('Welcome') }) it('health check API responds', () => { cy.request('GET', '/api/health').its('status').should('eq', 200) }) })