diff --git a/packages/shared/src/health.test.ts b/packages/shared/src/health.test.ts index 6ab2ea6..b11ccc0 100644 --- a/packages/shared/src/health.test.ts +++ b/packages/shared/src/health.test.ts @@ -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);