Merge pull request #3026 from immanuwell/fix-validator-test-exit

fix: make validators test failures exit non-zero
This commit is contained in:
Owen Schwartz
2026-05-28 17:43:43 -07:00
committed by GitHub

View File

@@ -244,4 +244,5 @@ try {
runTests();
} catch (error) {
console.error("Test failed:", error);
process.exit(1);
}