From 0611ceb5c3becfdb332918987193797617a24961 Mon Sep 17 00:00:00 2001 From: immanuwell Date: Thu, 7 May 2026 20:13:56 +0400 Subject: [PATCH] fix: make validators test failures exit non-zero --- server/lib/validators.test.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/server/lib/validators.test.ts b/server/lib/validators.test.ts index c4c564cf7..00b6c75db 100644 --- a/server/lib/validators.test.ts +++ b/server/lib/validators.test.ts @@ -244,4 +244,5 @@ try { runTests(); } catch (error) { console.error("Test failed:", error); + process.exit(1); }