Fix test runner paths, all 203 tests pass
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 2m1s

Spec tests (Python host): 43 CEK + 24 continuations + 90 types = 157
Web tests (Python host): 20 signals + 26 CEK reactive = 46
Total: 203 tests, 0 failures.

Fixed: continuation test bootstrapper path, type test spec dir path.
Both bootstrappers verified: Python (5993 lines), JS (387KB).

Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
2026-03-15 10:04:01 +00:00
parent 7cde140c7e
commit 1a5dbc2800
3 changed files with 4 additions and 3 deletions

View File

@@ -14,7 +14,7 @@
// =========================================================================
var NIL = Object.freeze({ _nil: true, toString: function() { return "nil"; } });
var SX_VERSION = "2026-03-15T02:29:18Z";
var SX_VERSION = "2026-03-15T10:01:33Z";
function isNil(x) { return x === NIL || x === null || x === undefined; }
function isSxTruthy(x) { return x !== false && !isNil(x); }