base/frontend/cypress/e2e/smoke.cy.js
Hera Zhao d19183923c
Some checks are pending
Deploy Production / test (push) Waiting to run
Deploy Production / deploy (push) Blocked by required conditions
Test / unit-test (push) Waiting to run
Test / e2e-test (push) Blocked by required conditions
Test / build-check (push) Waiting to run
Initial template: Vue 3 + FastAPI + SQLite full-stack with K8s deployment
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>
2026-04-06 22:13:06 +00:00

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)
})
})