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>
This commit is contained in:
10
frontend/cypress/e2e/smoke.cy.js
Normal file
10
frontend/cypress/e2e/smoke.cy.js
Normal file
@@ -0,0 +1,10 @@
|
||||
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)
|
||||
})
|
||||
})
|
||||
Reference in New Issue
Block a user