From b4846af95393088498125cc28478330fbbd3854d Mon Sep 17 00:00:00 2001 From: Claude Fable 5 Date: Sun, 5 Jul 2026 00:32:03 +0200 Subject: [PATCH] Deliberately break a test to verify the CI gate (will not be merged) --- packages/shared/src/health.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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);