Deliberately break a test to verify the CI gate (will not be merged)
Some checks failed
CI / Lint, typecheck, test (pull_request) Failing after 47s
CI / Build container images (pull_request) Successful in 7s

This commit is contained in:
Claude Fable 5 2026-07-05 00:32:03 +02:00
parent 61da1cc784
commit b4846af953

View File

@ -5,7 +5,7 @@ import { healthResponse } from './health';
describe('healthResponse', () => {
it('reports ok with service, version, and a valid timestamp', () => {
const res = healthResponse('api', '1.2.3');
expect(res.status).toBe('ok');
expect(res.status).toBe('broken-on-purpose');
expect(res.service).toBe('api');
expect(res.version).toBe('1.2.3');
expect(Number.isNaN(Date.parse(res.time))).toBe(false);