Some checks are pending
Extracted from oil project — business logic removed, auth/db/deploy infrastructure generalized with APP_NAME placeholders. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
11 lines
237 B
JavaScript
11 lines
237 B
JavaScript
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)
|
|
})
|
|
})
|